Jump to content
We've recently updated our Privacy Statement, available here ×

ryanneves_1

Members
  • Posts

    12
  • Joined

  • Last visited

ryanneves_1's Achievements

Apprentice

Apprentice (3/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. This is kinda what I came up with but I don't know how to make it work with JasperReports. My query would be something like this: WITH CTE AS ( SELECT lane_number, MIN(sequence) minSeq, MAX(sequence) maxSeq from v_sample GROUP BY lane_number UNION ALL SELECT lane_number, minSeq + 1, maxSeq from CTE WHERE minSeq+1 <= maxSeq ) Select t2.*, t1.lane_number, t1.minSeq as sequence from CTE t1 left join v_sample t2 on t1.lane_number = t2.lane_number and t1.minSeq = t2.sequence order by t1.lane_number, t1.minSeq; But it would have my original one nested in it for the VIEW, but I don't see Jaspersoft supporting this in Reports. create view v_sample as ( SELECT products.client_id, clients.name AS client_name, cars.vin, cars.make, cars.model, cars.style, cars.has_title, cars.general_description, cars.custom_description, cars.mileage, cars.'year', cars.ext_paint, cars.int_color, cars.manheim_submitted_on, products.stock_number, products.intake_date, manheim_auction_lanes.lane_number, manheim_auction_listings.sequence, product_titles.status AS title_status, manheim_auction_listings.gross_sale_price, product_purchases.sale_fee AS sales_fee, products.asking_price, products.asking_price_condition, manheim_auctions.auction_date, manheim_auctions.auction_number, manheim_auction_listings.created_at, manheim_auction_listings.updated_at, product_purchases.total_spent, users.username AS buyer_username, product_statuses.id AS product_status, product_statuses.description AS status_description, product_purchases.purchase_price, ( SELECT Count(*) FROM manheim_auction_listings AS listings_sub WHERE listings_sub.car_id = manheim_auction_listings.car_id AND listings_sub.id <> manheim_auction_listings.id) AS previous_auction_count FROM manheim_auction_listings JOIN cars ON cars.id = manheim_auction_listings.car_id JOIN products ON cars.product_id = products.id JOIN product_purchases ON current_product_purchase_id = product_purchases.id JOIN users ON product_purchases.buyer_id = users.id JOIN manheim_auctions ON manheim_auctions.id = manheim_auction_listings.manheim_auction_id AND manheim_auctions.auction_date = $p{auctiondate} JOIN manheim_auction_lanes ON manheim_auction_lanes.id = manheim_auction_listings.manheim_auction_lane_id JOIN product_categories ON products.product_category_id = product_categories.id AND product_categories.consigned_inventory=0 JOIN clients ON clients.id = products.client_id AND clients.id LIKE $p{loggedinuserattribute_clientid} LEFT JOIN product_titles ON product_titles.id = product_purchases.product_title_id JOIN product_statuses ON product_statuses.id = products.product_status_id ORDER BY manheim_auction_lanes.lane_number DESC, manheim_auction_listings.sequence DESC ) go
  2. WAS ABLE TO ACCOMPLISH BY SOMETHING LIKE THIS. giving me an automated report that always grabbed the next Friday date sale_date > CURDATE() and sale_date <= DATE_ADD(NOW(), INTERVAL + 6 DAY) and dayofweek(sale_date) = 6
  3. I have a SQL query that pulls a list like this based off the data returned from the query. Lane Run 10 2 10 3 10 6 (new page on lane change) 11 2 11 3 11 5 I would like it to insert a blank line when one is missing like below, anyone have ideas on doing that. Lane Run 10 2 10 3 10 6 (new page on lane change) 11 2 11 3 11 5
  4. Perhaps I wasn't clear based on the respoonse I recieved I have a report that is going to be scheduled to print every M, T, W, T and every time it prints it's using a parameter date field that is the Current Week, FRIDAY. org.apache.commons.lang.time.DateUtils.addDays(DATERANGE("WEEK").getEnd(),-1) gives me that as it grabs the enddate of the current week -1 moving Saturday to Friday and it works. However it is not recognized for some reason when you schedule the report, the report grabs the original scheduled date rather than using the expression based off the current run date of the report. I used the information provided below and converted to net.sf.jasperreports.types.date.DateRange with DATERANGE("WEEK-1").getEnd() as the Value Expression, but in DATERANGE I don't see a way to subtract 1 from the End date as it give syntax errors using DATERANGE("WEEK-1").getEnd(), -1 and doesnt accept the -1 to get the End DAte to be one day less than the end of week.
  5. This is an input control, Date range will not allow a specific day of week date to be selected, like the end date-2 in the sql query
  6. I've tried editing the property files in in the WEB-INF directories and hasn't worked for me either. on 6.0.1
  7. Looks like the report is working correctly if I pass data through the URL to the report FLOW but if I login directly with the same user-id and password to the FLOW.html if freezes on the loading screen after selecting the values of the Parameters.
  8. Using a parameter with a query for the INput control It seems to run fine and then when I select mulitple values the report just sits at "Loading" The values do seem to be populating as here is the log detail. LEFT JOIN expense_types on work_orders.expense_type_id = expense_types.id WHERE users.id IN (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) and product_statuses.in_inventory=1 or (product_statuses.in_inventory=0 and product_statuses.description = "DraftsPending") 2018-02-20 16:17:04,127 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:396 - Parameter #1 (LoggedInUserAttribute_ClientID of type java.lang.String): 4 2018-02-20 16:17:04,128 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #2 (Buyer_List[0] of type java.lang.String): 76 2018-02-20 16:17:04,129 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #3 (Buyer_List[1] of type java.lang.String): 54 2018-02-20 16:17:04,139 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #4 (Buyer_List[2] of type java.lang.String): 66 2018-02-20 16:17:04,139 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #5 (Buyer_List[3] of type java.lang.String): 77 2018-02-20 16:17:04,140 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #6 (Buyer_List[4] of type java.lang.String): 21 2018-02-20 16:17:04,141 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #7 (Buyer_List[5] of type java.lang.String): 45 2018-02-20 16:17:04,142 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #8 (Buyer_List[6] of type java.lang.String): 41 2018-02-20 16:17:04,143 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #9 (Buyer_List[7] of type java.lang.String): 39 2018-02-20 16:17:04,143 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #10 (Buyer_List[8] of type java.lang.String): 56 2018-02-20 16:17:04,144 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #11 (Buyer_List[9] of type java.lang.String): 47 2018-02-20 16:17:04,155 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #12 (Buyer_List[10] of type java.lang.String): 75 2018-02-20 16:17:04,156 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #13 (Buyer_List[11] of type java.lang.String): 80 2018-02-20 16:17:04,157 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #14 (Buyer_List[12] of type java.lang.String): 33 2018-02-20 16:17:04,158 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #15 (Buyer_List[13] of type java.lang.String): 68 2018-02-20 16:17:04,159 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #16 (Buyer_List[14] of type java.lang.String): 46 2018-02-20 16:17:04,160 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #17 (Buyer_List[15] of type java.lang.String): 81 2018-02-20 16:17:04,161 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #18 (Buyer_List[16] of type java.lang.String): 67 2018-02-20 16:17:04,162 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #19 (Buyer_List[17] of type java.lang.String): 74 2018-02-20 16:17:04,171 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #20 (Buyer_List[18] of type java.lang.String): 51 2018-02-20 16:17:04,172 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #21 (Buyer_List[19] of type java.lang.String): 38 2018-02-20 16:17:04,174 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #22 (Buyer_List[20] of type java.lang.String): 69 2018-02-20 16:17:04,175 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #23 (Buyer_List[21] of type java.lang.String): 55 2018-02-20 16:17:04,176 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #24 (Buyer_List[22] of type java.lang.String): 37 2018-02-20 16:17:04,177 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #25 (Buyer_List[23] of type java.lang.String): 34 2018-02-20 16:17:04,178 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #26 (Buyer_List[24] of type java.lang.String): 36 2018-02-20 16:17:04,187 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #27 (Buyer_List[25] of type java.lang.String): 35 2018-02-20 16:17:04,188 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #28 (Buyer_List[26] of type java.lang.String): 65 2018-02-20 16:17:04,189 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #29 (Buyer_List[27] of type java.lang.String): 52 2018-02-20 16:17:04,190 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #30 (Buyer_List[28] of type java.lang.String): 42 2018-02-20 16:17:04,191 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #31 (Buyer_List[29] of type java.lang.String): 48 2018-02-20 16:17:04,192 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #32 (Buyer_List[30] of type java.lang.String): 44 2018-02-20 16:17:04,193 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #33 (Buyer_List[31] of type java.lang.String): 40 2018-02-20 16:17:04,194 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #34 (Buyer_List[32] of type java.lang.String): 49 2018-02-20 16:17:04,195 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #35 (Buyer_List[33] of type java.lang.String): 53 2018-02-20 16:17:04,204 DEBUG JRJdbcQueryExecuter,pool-4-thread-1434:457 - Parameter #36 (Buyer_List[34] of type java.lang.String): 43
  9. Error printing any report in the jasperserver-pro installation on AWS. Did a new installation of the server and gets the same error. viewer.js gets an error on this line: (this.loader.jasperPrintName = this.status.jasperPrintName, this.loader.contextid = this.status.contextid) Error reported as: TypeError: null is not an object (evaluating 'this.status.jasperPrintName')
  10. I am moving data from a community installation of 6.0 to the AWS version of 6.4. new server installed and I can access my datasources but when I run any report whether it be a sample report or one I uploaded to the server it shows the component controls but then when it runs the report it should just shows the spinning blue circle and LOADING. From Studio on my laptop the report runs fine and if I select the report server HTML version it runs fine, but not from the repository. Below is the Log from running the report and then killing it from the LOADING screen. 2018-01-25 14:38:35,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,727 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.multipleTenancy.MTUserAuthorityServiceImpl.getUser]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:35,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186010021888 2018-01-25 14:38:35,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@667bc764] for Hibernate transaction 2018-01-25 14:38:35,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@667bc764] 2018-01-25 14:38:35,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:35,730 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:35,732 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:35,733 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:35,733 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:35,733 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,733 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@667bc764] for Hibernate transaction 2018-01-25 14:38:35,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:35,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,735 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:35,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organizations, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:35,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:35,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:35,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:35,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:35,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:35,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:35,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,788 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:35,788 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:35,790 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:35,790 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:35,790 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:35,791 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:35,791 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:35,792 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:35,792 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:35,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:35,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id7_0_, this_.username as username7_0_, this_.tenantId as tenantId7_0_, this_.fullname as fullname7_0_, this_.emailAddress as emailAdd5_7_0_, this_.password as password7_0_, this_.externallyDefined as external7_7_0_, this_.enabled as enabled7_0_, this_.previousPasswordChangeTime as previous9_7_0_ from JIUser this_ where this_.username ilike ? and this_.tenantId=?; parameters: superuser, 1, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:35,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JIUser] 2018-01-25 14:38:35,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JIUser 2018-01-25 14:38:35,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JIUser is null 2018-01-25 14:38:35,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:35,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser#10 2018-01-25 14:38:35,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:35,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:35,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:35,812 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:2011 - loading collection: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] 2018-01-25 14:38:35,812 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:35,812 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select roles0_.userId as userId1_, roles0_.roleId as roleId1_, reporole1_.id as id9_0_, reporole1_.rolename as rolename9_0_, reporole1_.tenantId as tenantId9_0_, reporole1_.externallyDefined as external4_9_0_ from JIUserRole roles0_ left outer join JIRole reporole1_ on roles0_.roleId=reporole1_.id where roles0_.userId=? 2018-01-25 14:38:35,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:35,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1078 - result set contains (possibly empty) collection: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] 2018-01-25 14:38:35,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4] 2018-01-25 14:38:35,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1008 - found row of collection: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] 2018-01-25 14:38:35,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8] 2018-01-25 14:38:35,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1008 - found row of collection: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] 2018-01-25 14:38:35,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:35,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:35,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4] 2018-01-25 14:38:35,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4] 2018-01-25 14:38:35,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4 2018-01-25 14:38:35,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4] 2018-01-25 14:38:35,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8] 2018-01-25 14:38:35,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8] 2018-01-25 14:38:35,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8 2018-01-25 14:38:35,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8] 2018-01-25 14:38:35,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 CollectionLoadContext:240 - 1 collections were found in result set for role: com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles 2018-01-25 14:38:35,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 CollectionLoadContext:283 - collection fully initialized: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] 2018-01-25 14:38:35,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 CollectionLoadContext:249 - 1 collections initialized for role: com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles 2018-01-25 14:38:35,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:35,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:2035 - done loading collection 2018-01-25 14:38:35,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@667bc764] for Hibernate transaction 2018-01-25 14:38:35,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:35,836 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:35,836 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:35,837 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,837 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,837 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:35,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:35,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:35,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:35,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:35,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] (initialized) 2018-01-25 14:38:35,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.thumbnails#10], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.thumbnails#10] (uninitialized) 2018-01-25 14:38:35,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#4], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#4] (uninitialized) 2018-01-25 14:38:35,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#8], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#8] (uninitialized) 2018-01-25 14:38:35,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 4 objects 2018-01-25 14:38:35,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 7 collections 2018-01-25 14:38:35,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:35,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser{emailAddress=null, password=CD86A72F77CC9B0D99159998513FD531DD0A0F25B850FCCF, roles=[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4, com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8], fullName=superuser, id=10, thumbnails=<uninitialized>, previousPasswordChangeTime=2018-01-22 21:29:34, tenant=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, externallyDefined=false, enabled=true, username=superuser} 2018-01-25 14:38:35,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole{roleName=ROLE_SUPERUSER, id=8, tenant=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, externallyDefined=false, users=<uninitialized>} 2018-01-25 14:38:35,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:35,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole{roleName=ROLE_ADMINISTRATOR, id=4, tenant=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, externallyDefined=false, users=<uninitialized>} 2018-01-25 14:38:35,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:35,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select repoprofil0_.id as id12_, repoprofil0_.attrName as attrName12_, repoprofil0_.attrValue as attrValue12_, repoprofil0_.description as descript4_12_, repoprofil0_.owner as owner12_, repoprofil0_.principalobjectclass as principa6_12_, repoprofil0_.principalobjectid as principa7_12_ from JIProfileAttribute repoprofil0_ where repoprofil0_.principalobjectclass=? and repoprofil0_.principalobjectid=? 2018-01-25 14:38:35,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:35,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:35,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:35,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:35,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:35,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@667bc764] 2018-01-25 14:38:35,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:35,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:35,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:35,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:35,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:35,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:35,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.roles#10] (initialized) 2018-01-25 14:38:35,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.thumbnails#10], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser.thumbnails#10] (uninitialized) 2018-01-25 14:38:35,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#4], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#4] (uninitialized) 2018-01-25 14:38:35,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#8], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole.users#8] (uninitialized) 2018-01-25 14:38:35,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 4 objects 2018-01-25 14:38:35,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 7 collections 2018-01-25 14:38:35,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:35,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoUser{emailAddress=null, password=CD86A72F77CC9B0D99159998513FD531DD0A0F25B850FCCF, roles=[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#4, com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole#8], fullName=superuser, id=10, thumbnails=<uninitialized>, previousPasswordChangeTime=2018-01-22 21:29:34, tenant=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, externallyDefined=false, enabled=true, username=superuser} 2018-01-25 14:38:35,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole{roleName=ROLE_SUPERUSER, id=8, tenant=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, externallyDefined=false, users=<uninitialized>} 2018-01-25 14:38:35,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:35,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole{roleName=ROLE_ADMINISTRATOR, id=4, tenant=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, externallyDefined=false, users=<uninitialized>} 2018-01-25 14:38:35,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:35,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:35,925 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:35,934 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@667bc764] after transaction 2018-01-25 14:38:35,934 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:35,934 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:35,935 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:35,936 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:1014 - Initiating report execution for /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles 2018-01-25 14:38:35,936 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:1014 - Initiating report execution for /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles 2018-01-25 14:38:35,936 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,936 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:320 - Opening Hibernate Session 2018-01-25 14:38:35,937 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186010877952 2018-01-25 14:38:35,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:328 - Registering Spring transaction synchronization for new Hibernate Session 2018-01-25 14:38:35,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:35,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organization_1, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:35,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:35,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:35,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:35,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:35,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#3 2018-01-25 14:38:35,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:35,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:35,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:35,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:860 - initializing proxy: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1] 2018-01-25 14:38:35,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:35,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:35,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@51a1e838] for Hibernate transaction 2018-01-25 14:38:35,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:402 - disconnecting session 2018-01-25 14:38:35,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.getProfileAttributesForPrincipal]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:35,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186010984448 2018-01-25 14:38:35,974 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@63b8f79] for Hibernate transaction 2018-01-25 14:38:35,974 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@63b8f79] 2018-01-25 14:38:35,974 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:35,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:35,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:35,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:35,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:35,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@63b8f79] for Hibernate transaction 2018-01-25 14:38:35,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:35,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:35,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@63b8f79] for Hibernate transaction 2018-01-25 14:38:35,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:35,982 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,982 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:35,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:35,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organization_1, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:35,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:35,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:35,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:35,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:35,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#3 2018-01-25 14:38:35,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:860 - initializing proxy: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1] 2018-01-25 14:38:36,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:36,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#3], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#3] (uninitialized) 2018-01-25 14:38:36,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#3], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#3] (uninitialized) 2018-01-25 14:38:36,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#3], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#3] (uninitialized) 2018-01-25 14:38:36,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:36,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:36,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:36,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects 2018-01-25 14:38:36,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 6 collections 2018-01-25 14:38:36,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:36,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, tenantDesc= , roles=<uninitialized>, tenantFolderUri=/organizations/organization_1, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/organization_1, tenantName=Organization, tenantId=organization_1, theme=default, id=3, tenantAlias=organization_1, tenantNote= } 2018-01-25 14:38:36,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select repoprofil0_.id as id12_, repoprofil0_.attrName as attrName12_, repoprofil0_.attrValue as attrValue12_, repoprofil0_.description as descript4_12_, repoprofil0_.owner as owner12_, repoprofil0_.principalobjectclass as principa6_12_, repoprofil0_.principalobjectid as principa7_12_ from JIProfileAttribute repoprofil0_ where repoprofil0_.principalobjectclass=? and repoprofil0_.principalobjectid=? 2018-01-25 14:38:36,051 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,051 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:36,053 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@63b8f79] 2018-01-25 14:38:36,053 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:36,053 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,053 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,054 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#3], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#3] (uninitialized) 2018-01-25 14:38:36,056 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#3], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#3] (uninitialized) 2018-01-25 14:38:36,056 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#3], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#3] (uninitialized) 2018-01-25 14:38:36,056 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:36,057 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:36,057 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:36,057 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects 2018-01-25 14:38:36,058 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 6 collections 2018-01-25 14:38:36,058 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,058 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:36,058 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, tenantDesc= , roles=<uninitialized>, tenantFolderUri=/organizations/organization_1, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/organization_1, tenantName=Organization, tenantId=organization_1, theme=default, id=3, tenantAlias=organization_1, tenantNote= } 2018-01-25 14:38:36,059 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:36,059 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:36,059 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,059 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@63b8f79] after transaction 2018-01-25 14:38:36,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:36,063 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:1013 - Resuming suspended transaction after completion of inner transaction 2018-01-25 14:38:36,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MultiTenancyRepositoryContextManager:52 - current context null 2018-01-25 14:38:36,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MultiTenancyRepositoryContextManager:52 - current context null 2018-01-25 14:38:36,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context Multitenancy context: organization organization_1 2018-01-25 14:38:36,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context Multitenancy context: organization organization_1 2018-01-25 14:38:36,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context Multitenancy context: organization organization_1 2018-01-25 14:38:36,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context Multitenancy context: organization organization_1 2018-01-25 14:38:36,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.multipleTenancy.PathTransformationRepositoryService.getChildrenFolderName]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:36,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186011566080 2018-01-25 14:38:36,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@36e4eeb6] for Hibernate transaction 2018-01-25 14:38:36,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@36e4eeb6] 2018-01-25 14:38:36,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:36,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:36,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:36,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:36,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:36,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:185 - Public object - authentication not attempted 2018-01-25 14:38:36,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getChildrenFolderName(CarsMissingTitles) 2018-01-25 14:38:36,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getChildrenFolderName(CarsMissingTitles) 2018-01-25 14:38:36,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@36e4eeb6] for Hibernate transaction 2018-01-25 14:38:36,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:36,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getChildrenFolderName returned in 9 ms 2018-01-25 14:38:36,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getChildrenFolderName returned in 9 ms 2018-01-25 14:38:36,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:36,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@36e4eeb6] 2018-01-25 14:38:36,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:36,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:36,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:36,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@36e4eeb6] after transaction 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context Multitenancy context: organization organization_1 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context Multitenancy context: organization organization_1 2018-01-25 14:38:36,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.multipleTenancy.PathTransformationRepositoryService.getResource]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:36,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186011623424 2018-01-25 14:38:36,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@bf058d8] for Hibernate transaction 2018-01-25 14:38:36,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@bf058d8] 2018-01-25 14:38:36,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:36,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:36,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:36,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:36,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:36,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:194 - Secure object: ReflectiveMethodInvocation: public abstract com.jaspersoft.jasperserver.api.metadata.common.domain.Resource com.jaspersoft.jasperserver.api.metadata.common.service.RepositoryService.getResource(com.jaspersoft.jasperserver.api.common.domain.ExecutionContext,java.lang.String); target is of class [com.sun.proxy.$Proxy42]; Attributes: [ACL_USER_READ] 2018-01-25 14:38:36,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:310 - Previously Authenticated: com.jaspersoft.jasperserver.api.security.internalAuth.InternalAuthenticationTokenImpl@e4a3ee73: Principal: MetadataUserDetails: superuser; Credentials: [PROTECTED]; Authenticated: true; Details: com.jaspersoft.jasperserver.multipleTenancy.MTWebAuthenticationDetails@21a2c: RemoteIpAddress: 24.229.67.15; SessionId: B00DA849E9FD09597CBE178BD5646BC9; Granted Authorities: com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.TenantAwareGrantedAuthority@66d93365, com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.TenantAwareGrantedAuthority@3cd648f3 2018-01-25 14:38:36,121 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.access.vote.RoleVoter@501f90df, returned: 0 2018-01-25 14:38:36,121 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@415e40d7, returned: 0 2018-01-25 14:38:36,121 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@7d8f7501, returned: 0 2018-01-25 14:38:36,121 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@32b8139b, returned: 0 2018-01-25 14:38:36,121 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:102 - looked up perms for execute: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,121 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:102 - looked up perms for execute: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:112 - Effective permissions: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:112 - Effective permissions: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[...............................A=1] 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[...............................A=1] 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..............................R.=2] 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..............................R.=2] 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..........................X.....=32] 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..........................X.....=32] 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:135 - calling getResource on /organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,122 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:135 - calling getResource on /organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,123 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,123 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1/datasources 2018-01-25 14:38:36,123 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1 2018-01-25 14:38:36,128 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1 2018-01-25 14:38:36,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:176 - Voting to grant access 2018-01-25 14:38:36,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:176 - Voting to grant access 2018-01-25 14:38:36,160 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: com.jaspersoft.jasperserver.api.metadata.security.ContextSensitiveAclEntryVoter@14caffd7, returned: 1 2018-01-25 14:38:36,160 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:215 - Authorization successful 2018-01-25 14:38:36,160 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:227 - RunAsManager did not change Authentication object 2018-01-25 14:38:36,160 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getResource(com.jaspersoft.jasperserver.api.common.domain.impl.ExecutionContextImpl@6fd513f2, /organizations/organization_1/datasources/CarloggerProduction) 2018-01-25 14:38:36,160 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getResource(com.jaspersoft.jasperserver.api.common.domain.impl.ExecutionContextImpl@6fd513f2, /organizations/organization_1/datasources/CarloggerProduction) 2018-01-25 14:38:36,160 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,161 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@bf058d8] for Hibernate transaction 2018-01-25 14:38:36,161 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:36,161 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl:1146 - Looking for name: CarloggerProduction in folder: /organizations/organization_1/datasources 2018-01-25 14:38:36,161 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl:1146 - Looking for name: CarloggerProduction in folder: /organizations/organization_1/datasources 2018-01-25 14:38:36,161 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,161 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,162 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,162 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select this_.id as id5_0_, this_.version as version5_0_, this_.uri as uri5_0_, this_.hidden as hidden5_0_, this_.name as name5_0_, this_.label as label5_0_, this_.description as descript7_5_0_, this_.parent_folder as parent8_5_0_, this_.creation_date as creation9_5_0_, this_.update_date as update10_5_0_ from JIResourceFolder this_ where (this_.uri=?) 2018-01-25 14:38:36,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,168 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,168 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846 2018-01-25 14:38:36,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,200 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846] (uninitialized) 2018-01-25 14:38:36,200 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846] (uninitialized) 2018-01-25 14:38:36,200 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:36,201 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections 2018-01-25 14:38:36,201 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,201 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#27, updateDate=2017-10-31 19:31:49, subFolders=<uninitialized>, hidden=false, children=<uninitialized>, name=datasources, description=Data Sources used by reports, id=846, label=Data Sources, creationDate=2017-11-02 21:46:18, version=0, URI=/organizations/organization_1/datasources} 2018-01-25 14:38:36,202 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,202 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select this_.id as id6_0_, this_.version as version6_0_, this_.name as name6_0_, this_.parent_folder as parent4_6_0_, this_.childrenFolder as children5_6_0_, this_.label as label6_0_, this_.description as descript7_6_0_, this_.resourceType as resource8_6_0_, this_.creation_date as creation9_6_0_, this_.update_date as update10_6_0_, this_1_.catalog as catalog26_0_, this_1_.mondrianConnection as mondrian3_26_0_, this_2_.adhocStateId as adhocSta2_35_0_, this_3_.foundationsString as foundati2_37_0_, this_3_.resourcesString as resource3_37_0_, this_3_.defaultFoundation as defaultF4_37_0_, this_4_.adhocStateId as adhocSta2_39_0_, this_4_.reportDataSource as reportDa3_39_0_, this_4_.promptcontrols as promptco4_39_0_, this_4_.controlslayout as controls5_39_0_, this_4_.controlrenderer as controlr6_39_0_, this_5_.options_name as options2_48_0_, this_5_.report_id as report3_48_0_, this_6_.schema_id as schema2_50_0_, this_6_.security_id as security3_50_0_, this_7_.beanName as beanName53_0_, this_7_.beanMethod as beanMethod53_0_, this_8_.file_type as file3_4_0_, this_8_.reference as reference4_0_, this_9_.type as type54_0_, this_9_.mandatory as mandatory54_0_, this_9_.readOnly as readOnly54_0_, this_9_.visible as visible54_0_, this_9_.data_type as data6_54_0_, this_9_.list_of_values as list7_54_0_, this_9_.list_query as list8_54_0_, this_9_.query_value_column as query9_54_0_, this_9_.defaultValue as default10_54_0_, this_10_.timezone as timezone56_0_, this_11_.serviceClass as serviceC2_58_0_, this_12_.olapClientConnection as olapClie2_61_0_, this_12_.mdx_query as mdx3_61_0_, this_12_.view_options as view4_61_0_, this_13_.file_type as file3_62_0_, this_14_.reportDataSource as reportDa2_63_0_, this_14_.query as query63_0_, this_14_.mainReport as mainReport63_0_, this_14_.controlrenderer as controlr5_63_0_, this_14_.reportrenderer as reportre6_63_0_, this_14_.promptcontrols as promptco7_63_0_, this_14_.controlslayout as controls8_63_0_, this_14_.data_snapshot_id as data9_63_0_, this_15_.adhocStateId as adhocSta2_66_0_, this_16_.type as type67_0_, this_16_.maxLength as maxLength67_0_, this_16_.decimals as decimals67_0_, this_16_.regularExpr as regularE5_67_0_, this_16_.minValue as minValue67_0_, this_16_.max_value as max7_67_0_, this_16_.strictMin as strictMin67_0_, this_16_.strictMax as strictMax67_0_, this_19_.jndiName as jndiName71_0_, this_19_.timezone as timezone71_0_, this_20_.dataSource as dataSource72_0_, this_20_.query_language as query3_72_0_, this_20_.sql_query as sql4_72_0_, this_21_.driver as driver73_0_, this_21_.password as password73_0_, this_21_.connectionUrl as connecti4_73_0_, this_21_.username as username73_0_, this_21_.timezone as timezone73_0_, this_22_.keyStore_id as keyStore2_74_0_, this_22_.keyStorePassword as keyStore3_74_0_, this_22_.keyStoreType as keyStore4_74_0_, this_22_.subscriptionId as subscrip5_74_0_, this_22_.serverName as serverName74_0_, this_22_.dbName as dbName74_0_, this_23_.accessKey as accessKey75_0_, this_23_.secretKey as secretKey75_0_, this_23_.roleARN as roleARN75_0_, this_23_.region as region75_0_, this_23_.dbName as dbName75_0_, this_23_.dbInstanceIdentifier as dbInstan7_75_0_, this_23_.dbService as dbService75_0_, this_25_.reportDataSource as reportDa2_77_0_, this_25_.mondrianSchema as mondrian3_77_0_, this_26_.catalog as catalog79_0_, this_26_.username as username79_0_, this_26_.password as password79_0_, this_26_.datasource as datasource79_0_, this_26_.uri as uri79_0_, case when this_15_.id is not null then 15 when this_17_.id is not null then 17 when this_22_.id is not null then 22 when this_23_.id is not null then 23 when this_25_.id is not null then 25 when this_26_.id is not null then 26 when this_1_.id is not null then 1 when this_2_.id is not null then 2 when this_3_.id is not null then 3 when this_4_.id is not null then 4 when this_5_.id is not null then 5 when this_6_.id is not null then 6 when this_7_.id is not null then 7 when this_8_.id is not null then 8 when this_9_.id is not null then 9 when this_10_.id is not null then 10 when this_11_.id is not null then 11 when this_12_.id is not null then 12 when this_13_.id is not null then 13 when this_14_.id is not null then 14 when this_16_.id is not null then 16 when this_18_.id is not null then 18 when this_19_.id is not null then 19 when this_20_.id is not null then 20 when this_21_.id is not null then 21 when this_24_.id is not null then 24 when this_.id is not null then 0 end as clazz_0_ from JIResource this_ left outer join JIMondrianXMLADefinition this_1_ on this_.id=this_1_.id left outer join JIDashboard this_2_ on this_.id=this_2_.id left outer join JIDashboardModel this_3_ on this_.id=this_3_.id left outer join JIAdhocDataView this_4_ on this_.id=this_4_.id left outer join JIReportOptions this_5_ on this_.id=this_5_.id left outer join JIDomainDatasource this_6_ on this_.id=this_6_.id left outer join JIBeanDatasource this_7_ on this_.id=this_7_.id left outer join JIFileResource this_8_ on this_.id=this_8_.id left outer join JIInputControl this_9_ on this_.id=this_9_.id left outer join JIVirtualDatasource this_10_ on this_.id=this_10_.id left outer join JICustomDatasource this_11_ on this_.id=this_11_.id left outer join JIOlapUnit this_12_ on this_.id=this_12_.id left outer join JIContentResource this_13_ on this_.id=this_13_.id left outer join JIReportUnit this_14_ on this_.id=this_14_.id left outer join JIAdhocReportUnit this_15_ on this_.id=this_15_.id left outer join JIDataType this_16_ on this_.id=this_16_.id left outer join JIDataDefinerUnit this_17_ on this_.id=this_17_.id left outer join JIListOfValues this_18_ on this_.id=this_18_.id left outer join JIJNDIJdbcDatasource this_19_ on this_.id=this_19_.id left outer join JIQuery this_20_ on this_.id=this_20_.id left outer join JIJdbcDatasource this_21_ on this_.id=this_21_.id left outer join JIAzureSqlDatasource this_22_ on this_.id=this_22_.id left outer join JIAwsDatasource this_23_ on this_.id=this_23_.id left outer join JIOlapClientConnection this_24_ on this_.id=this_24_.id left outer join JIMondrianConnection this_25_ on this_.id=this_25_.id left outer join JIXMLAConnection this_26_ on this_.id=this_26_.id where (this_.name=? and this_.parent_folder=?) 2018-01-25 14:38:36,272 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,272 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource#2460] 2018-01-25 14:38:36,273 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,273 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,274 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource#2460 2018-01-25 14:38:36,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,314 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,314 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,316 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,316 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,316 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,316 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,316 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,316 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,317 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getResource returned in 157 ms 2018-01-25 14:38:36,317 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getResource returned in 157 ms 2018-01-25 14:38:36,317 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:36,317 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@bf058d8] 2018-01-25 14:38:36,317 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:36,317 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,318 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,318 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846] (uninitialized) 2018-01-25 14:38:36,318 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846] (uninitialized) 2018-01-25 14:38:36,318 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.accessEvents#2460], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.accessEvents#2460] (uninitialized) 2018-01-25 14:38:36,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.thumbnails#2460], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.thumbnails#2460] (uninitialized) 2018-01-25 14:38:36,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects 2018-01-25 14:38:36,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 4 collections 2018-01-25 14:38:36,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#27, updateDate=2017-10-31 19:31:49, subFolders=<uninitialized>, hidden=false, children=<uninitialized>, name=datasources, description=Data Sources used by reports, id=846, label=Data Sources, creationDate=2017-11-02 21:46:18, version=0, URI=/organizations/organization_1/datasources} 2018-01-25 14:38:36,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846, updateDate=2016-10-16 01:25:33, secretKey=4543D437FBAE54873FA3687C502867515BE388E87B3722EC6E2DE2B095EC2F63BD85EFA7D30771D88678FF8EB956FC06, dbInstanceIdentifier=carlogger-production, timezone=, dbName=carlogger, description=null, childrenFolder=null, label=CarloggerProduction, creationDate=2018-01-22 22:17:36, version=1, password=CD86A72F77CC9B0D465CEF0193481D51, accessKey=23D5A973F35D1B4947756476FBA4099BEA08BEA6B8C4CBC5, driverClass=org.mariadb.jdbc.Driver, roleARN=, name=CarloggerProduction, connectionUrl=jdbc:mysql://carlogger-production.cwhwdsfgorqd.us-east-1.rds.amazonaws.com:3306/carlogger, accessEvents=<uninitialized>, id=2460, thumbnails=<uninitialized>, region=us-east-1.amazonaws.com, dbService=rds, resourceType=com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.AwsReportDataSource, username=veridian} 2018-01-25 14:38:36,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:36,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:36,350 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,350 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@bf058d8] after transaction 2018-01-25 14:38:36,350 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,350 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:36,350 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,351 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RepositoryUtil:42 - set repository context to context with path /reports/AutoInventoryPro/CarsMissingTitles_files 2018-01-25 14:38:36,351 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RepositoryUtil:42 - set repository context to context with path /reports/AutoInventoryPro/CarsMissingTitles_files 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:57 - Acquiring lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:57 - Acquiring lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:89 - Acquired lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:89 - Acquired lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.HibernateRepositoryCache.cache]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:36,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186012581888 2018-01-25 14:38:36,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@d9c572d] for Hibernate transaction 2018-01-25 14:38:36,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@d9c572d] 2018-01-25 14:38:36,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:36,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:36,363 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:36,363 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:36,363 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:36,363 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryCache:97 - Looking in repository cache "JasperReport" for resource "/organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml", version 7", version date 2018-01-22 22:18:00.883 2018-01-25 14:38:36,363 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryCache:97 - Looking in repository cache "JasperReport" for resource "/organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml", version 7", version date 2018-01-22 22:18:00.883 2018-01-25 14:38:36,364 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:57 - Acquiring lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,364 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:57 - Acquiring lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,364 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:89 - Acquired lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,364 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:89 - Acquired lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,365 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryCache:140 - HibernateRepositoryCache: Looking in repository cache "JasperReport" for resource "/organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml 2018-01-25 14:38:36,365 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryCache:140 - HibernateRepositoryCache: Looking in repository cache "JasperReport" for resource "/organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml 2018-01-25 14:38:36,365 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:133 - Releasing lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,365 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:133 - Releasing lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,365 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:36,365 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@d9c572d] 2018-01-25 14:38:36,366 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:36,366 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:36,366 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:36,366 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,367 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@d9c572d] after transaction 2018-01-25 14:38:36,367 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:36,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'fileResourceTransformer' 2018-01-25 14:38:36,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:133 - Releasing lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LocalLockManager:133 - Releasing lock for (JasperReport, /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles_files/main_jrxml) 2018-01-25 14:38:36,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.multipleTenancy.PathTransformationRepositoryService.getResource]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:36,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186012766208 2018-01-25 14:38:36,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@68cede06] for Hibernate transaction 2018-01-25 14:38:36,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@68cede06] 2018-01-25 14:38:36,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:36,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:36,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:36,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:36,400 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:36,400 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:194 - Secure object: ReflectiveMethodInvocation: public abstract com.jaspersoft.jasperserver.api.metadata.common.domain.Resource com.jaspersoft.jasperserver.api.metadata.common.service.RepositoryService.getResource(com.jaspersoft.jasperserver.api.common.domain.ExecutionContext,java.lang.String,java.lang.Class); target is of class [com.sun.proxy.$Proxy42]; Attributes: [ACL_USER_READ] 2018-01-25 14:38:36,400 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:310 - Previously Authenticated: com.jaspersoft.jasperserver.api.security.internalAuth.InternalAuthenticationTokenImpl@e4a3ee73: Principal: MetadataUserDetails: superuser; Credentials: [PROTECTED]; Authenticated: true; Details: com.jaspersoft.jasperserver.multipleTenancy.MTWebAuthenticationDetails@21a2c: RemoteIpAddress: 24.229.67.15; SessionId: B00DA849E9FD09597CBE178BD5646BC9; Granted Authorities: com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.TenantAwareGrantedAuthority@66d93365, com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.TenantAwareGrantedAuthority@3cd648f3 2018-01-25 14:38:36,400 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.access.vote.RoleVoter@501f90df, returned: 0 2018-01-25 14:38:36,400 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@415e40d7, returned: 0 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@7d8f7501, returned: 0 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@32b8139b, returned: 0 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:102 - looked up perms for execute: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:102 - looked up perms for execute: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:112 - Effective permissions: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:112 - Effective permissions: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[...............................A=1] 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[...............................A=1] 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..............................R.=2] 2018-01-25 14:38:36,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..............................R.=2] 2018-01-25 14:38:36,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..........................X.....=32] 2018-01-25 14:38:36,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..........................X.....=32] 2018-01-25 14:38:36,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:135 - calling getResource on /organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:135 - calling getResource on /organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1/datasources 2018-01-25 14:38:36,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1 2018-01-25 14:38:36,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,432 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,432 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,432 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,432 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,433 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1 2018-01-25 14:38:36,433 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,433 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,434 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,434 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,434 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,435 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,435 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:176 - Voting to grant access 2018-01-25 14:38:36,435 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:176 - Voting to grant access 2018-01-25 14:38:36,435 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: com.jaspersoft.jasperserver.api.metadata.security.ContextSensitiveAclEntryVoter@14caffd7, returned: 1 2018-01-25 14:38:36,435 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:215 - Authorization successful 2018-01-25 14:38:36,435 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:227 - RunAsManager did not change Authentication object 2018-01-25 14:38:36,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getResource(com.jaspersoft.jasperserver.api.common.domain.impl.ExecutionContextImpl@27693d2, /organizations/organization_1/datasources/CarloggerProduction, null) 2018-01-25 14:38:36,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getResource(com.jaspersoft.jasperserver.api.common.domain.impl.ExecutionContextImpl@27693d2, /organizations/organization_1/datasources/CarloggerProduction, null) 2018-01-25 14:38:36,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@68cede06] for Hibernate transaction 2018-01-25 14:38:36,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:36,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl:1146 - Looking for name: CarloggerProduction in folder: /organizations/organization_1/datasources 2018-01-25 14:38:36,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl:1146 - Looking for name: CarloggerProduction in folder: /organizations/organization_1/datasources 2018-01-25 14:38:36,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select this_.id as id5_0_, this_.version as version5_0_, this_.uri as uri5_0_, this_.hidden as hidden5_0_, this_.name as name5_0_, this_.label as label5_0_, this_.description as descript7_5_0_, this_.parent_folder as parent8_5_0_, this_.creation_date as creation9_5_0_, this_.update_date as update10_5_0_ from JIResourceFolder this_ where (this_.uri=?) 2018-01-25 14:38:36,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846 2018-01-25 14:38:36,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,481 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846] (uninitialized) 2018-01-25 14:38:36,481 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846] (uninitialized) 2018-01-25 14:38:36,482 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:36,482 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections 2018-01-25 14:38:36,482 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,482 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#27, updateDate=2017-10-31 19:31:49, subFolders=<uninitialized>, hidden=false, children=<uninitialized>, name=datasources, description=Data Sources used by reports, id=846, label=Data Sources, creationDate=2017-11-02 21:46:18, version=0, URI=/organizations/organization_1/datasources} 2018-01-25 14:38:36,483 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,483 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select this_.id as id6_0_, this_.version as version6_0_, this_.name as name6_0_, this_.parent_folder as parent4_6_0_, this_.childrenFolder as children5_6_0_, this_.label as label6_0_, this_.description as descript7_6_0_, this_.resourceType as resource8_6_0_, this_.creation_date as creation9_6_0_, this_.update_date as update10_6_0_, this_1_.catalog as catalog26_0_, this_1_.mondrianConnection as mondrian3_26_0_, this_2_.adhocStateId as adhocSta2_35_0_, this_3_.foundationsString as foundati2_37_0_, this_3_.resourcesString as resource3_37_0_, this_3_.defaultFoundation as defaultF4_37_0_, this_4_.adhocStateId as adhocSta2_39_0_, this_4_.reportDataSource as reportDa3_39_0_, this_4_.promptcontrols as promptco4_39_0_, this_4_.controlslayout as controls5_39_0_, this_4_.controlrenderer as controlr6_39_0_, this_5_.options_name as options2_48_0_, this_5_.report_id as report3_48_0_, this_6_.schema_id as schema2_50_0_, this_6_.security_id as security3_50_0_, this_7_.beanName as beanName53_0_, this_7_.beanMethod as beanMethod53_0_, this_8_.file_type as file3_4_0_, this_8_.reference as reference4_0_, this_9_.type as type54_0_, this_9_.mandatory as mandatory54_0_, this_9_.readOnly as readOnly54_0_, this_9_.visible as visible54_0_, this_9_.data_type as data6_54_0_, this_9_.list_of_values as list7_54_0_, this_9_.list_query as list8_54_0_, this_9_.query_value_column as query9_54_0_, this_9_.defaultValue as default10_54_0_, this_10_.timezone as timezone56_0_, this_11_.serviceClass as serviceC2_58_0_, this_12_.olapClientConnection as olapClie2_61_0_, this_12_.mdx_query as mdx3_61_0_, this_12_.view_options as view4_61_0_, this_13_.file_type as file3_62_0_, this_14_.reportDataSource as reportDa2_63_0_, this_14_.query as query63_0_, this_14_.mainReport as mainReport63_0_, this_14_.controlrenderer as controlr5_63_0_, this_14_.reportrenderer as reportre6_63_0_, this_14_.promptcontrols as promptco7_63_0_, this_14_.controlslayout as controls8_63_0_, this_14_.data_snapshot_id as data9_63_0_, this_15_.adhocStateId as adhocSta2_66_0_, this_16_.type as type67_0_, this_16_.maxLength as maxLength67_0_, this_16_.decimals as decimals67_0_, this_16_.regularExpr as regularE5_67_0_, this_16_.minValue as minValue67_0_, this_16_.max_value as max7_67_0_, this_16_.strictMin as strictMin67_0_, this_16_.strictMax as strictMax67_0_, this_19_.jndiName as jndiName71_0_, this_19_.timezone as timezone71_0_, this_20_.dataSource as dataSource72_0_, this_20_.query_language as query3_72_0_, this_20_.sql_query as sql4_72_0_, this_21_.driver as driver73_0_, this_21_.password as password73_0_, this_21_.connectionUrl as connecti4_73_0_, this_21_.username as username73_0_, this_21_.timezone as timezone73_0_, this_22_.keyStore_id as keyStore2_74_0_, this_22_.keyStorePassword as keyStore3_74_0_, this_22_.keyStoreType as keyStore4_74_0_, this_22_.subscriptionId as subscrip5_74_0_, this_22_.serverName as serverName74_0_, this_22_.dbName as dbName74_0_, this_23_.accessKey as accessKey75_0_, this_23_.secretKey as secretKey75_0_, this_23_.roleARN as roleARN75_0_, this_23_.region as region75_0_, this_23_.dbName as dbName75_0_, this_23_.dbInstanceIdentifier as dbInstan7_75_0_, this_23_.dbService as dbService75_0_, this_25_.reportDataSource as reportDa2_77_0_, this_25_.mondrianSchema as mondrian3_77_0_, this_26_.catalog as catalog79_0_, this_26_.username as username79_0_, this_26_.password as password79_0_, this_26_.datasource as datasource79_0_, this_26_.uri as uri79_0_, case when this_15_.id is not null then 15 when this_17_.id is not null then 17 when this_22_.id is not null then 22 when this_23_.id is not null then 23 when this_25_.id is not null then 25 when this_26_.id is not null then 26 when this_1_.id is not null then 1 when this_2_.id is not null then 2 when this_3_.id is not null then 3 when this_4_.id is not null then 4 when this_5_.id is not null then 5 when this_6_.id is not null then 6 when this_7_.id is not null then 7 when this_8_.id is not null then 8 when this_9_.id is not null then 9 when this_10_.id is not null then 10 when this_11_.id is not null then 11 when this_12_.id is not null then 12 when this_13_.id is not null then 13 when this_14_.id is not null then 14 when this_16_.id is not null then 16 when this_18_.id is not null then 18 when this_19_.id is not null then 19 when this_20_.id is not null then 20 when this_21_.id is not null then 21 when this_24_.id is not null then 24 when this_.id is not null then 0 end as clazz_0_ from JIResource this_ left outer join JIMondrianXMLADefinition this_1_ on this_.id=this_1_.id left outer join JIDashboard this_2_ on this_.id=this_2_.id left outer join JIDashboardModel this_3_ on this_.id=this_3_.id left outer join JIAdhocDataView this_4_ on this_.id=this_4_.id left outer join JIReportOptions this_5_ on this_.id=this_5_.id left outer join JIDomainDatasource this_6_ on this_.id=this_6_.id left outer join JIBeanDatasource this_7_ on this_.id=this_7_.id left outer join JIFileResource this_8_ on this_.id=this_8_.id left outer join JIInputControl this_9_ on this_.id=this_9_.id left outer join JIVirtualDatasource this_10_ on this_.id=this_10_.id left outer join JICustomDatasource this_11_ on this_.id=this_11_.id left outer join JIOlapUnit this_12_ on this_.id=this_12_.id left outer join JIContentResource this_13_ on this_.id=this_13_.id left outer join JIReportUnit this_14_ on this_.id=this_14_.id left outer join JIAdhocReportUnit this_15_ on this_.id=this_15_.id left outer join JIDataType this_16_ on this_.id=this_16_.id left outer join JIDataDefinerUnit this_17_ on this_.id=this_17_.id left outer join JIListOfValues this_18_ on this_.id=this_18_.id left outer join JIJNDIJdbcDatasource this_19_ on this_.id=this_19_.id left outer join JIQuery this_20_ on this_.id=this_20_.id left outer join JIJdbcDatasource this_21_ on this_.id=this_21_.id left outer join JIAzureSqlDatasource this_22_ on this_.id=this_22_.id left outer join JIAwsDatasource this_23_ on this_.id=this_23_.id left outer join JIOlapClientConnection this_24_ on this_.id=this_24_.id left outer join JIMondrianConnection this_25_ on this_.id=this_25_.id left outer join JIXMLAConnection this_26_ on this_.id=this_26_.id where (this_.name=? and this_.parent_folder=?) 2018-01-25 14:38:36,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource#2460] 2018-01-25 14:38:36,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,508 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,508 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,508 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,537 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource#2460 2018-01-25 14:38:36,538 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,538 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,539 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,539 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,540 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,540 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,540 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,540 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,540 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,540 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,541 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,541 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getResource returned in 107 ms 2018-01-25 14:38:36,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getResource returned in 107 ms 2018-01-25 14:38:36,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:36,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@68cede06] 2018-01-25 14:38:36,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:36,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846] (uninitialized) 2018-01-25 14:38:36,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846] (uninitialized) 2018-01-25 14:38:36,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.accessEvents#2460], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.accessEvents#2460] (uninitialized) 2018-01-25 14:38:36,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.thumbnails#2460], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.thumbnails#2460] (uninitialized) 2018-01-25 14:38:36,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects 2018-01-25 14:38:36,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 4 collections 2018-01-25 14:38:36,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,564 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#27, updateDate=2017-10-31 19:31:49, subFolders=<uninitialized>, hidden=false, children=<uninitialized>, name=datasources, description=Data Sources used by reports, id=846, label=Data Sources, creationDate=2017-11-02 21:46:18, version=0, URI=/organizations/organization_1/datasources} 2018-01-25 14:38:36,564 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846, updateDate=2016-10-16 01:25:33, secretKey=4543D437FBAE54873FA3687C502867515BE388E87B3722EC6E2DE2B095EC2F63BD85EFA7D30771D88678FF8EB956FC06, dbInstanceIdentifier=carlogger-production, timezone=, dbName=carlogger, description=null, childrenFolder=null, label=CarloggerProduction, creationDate=2018-01-22 22:17:36, version=1, password=CD86A72F77CC9B0D465CEF0193481D51, accessKey=23D5A973F35D1B4947756476FBA4099BEA08BEA6B8C4CBC5, driverClass=org.mariadb.jdbc.Driver, roleARN=, name=CarloggerProduction, connectionUrl=jdbc:mysql://carlogger-production.cwhwdsfgorqd.us-east-1.rds.amazonaws.com:3306/carlogger, accessEvents=<uninitialized>, id=2460, thumbnails=<uninitialized>, region=us-east-1.amazonaws.com, dbService=rds, resourceType=com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.AwsReportDataSource, username=veridian} 2018-01-25 14:38:36,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:36,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:36,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@68cede06] after transaction 2018-01-25 14:38:36,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:36,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardDataCacheProvider:100 - creating recording cache handler 2018-01-25 14:38:36,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardDataCacheProvider:100 - creating recording cache handler 2018-01-25 14:38:36,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.multipleTenancy.PathTransformationRepositoryService.getResource]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:36,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186013528064 2018-01-25 14:38:36,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@7b359d18] for Hibernate transaction 2018-01-25 14:38:36,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@7b359d18] 2018-01-25 14:38:36,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:36,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:36,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:36,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:36,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:36,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:194 - Secure object: ReflectiveMethodInvocation: public abstract com.jaspersoft.jasperserver.api.metadata.common.domain.Resource com.jaspersoft.jasperserver.api.metadata.common.service.RepositoryService.getResource(com.jaspersoft.jasperserver.api.common.domain.ExecutionContext,java.lang.String,java.lang.Class); target is of class [com.sun.proxy.$Proxy42]; Attributes: [ACL_USER_READ] 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:310 - Previously Authenticated: com.jaspersoft.jasperserver.api.security.internalAuth.InternalAuthenticationTokenImpl@e4a3ee73: Principal: MetadataUserDetails: superuser; Credentials: [PROTECTED]; Authenticated: true; Details: com.jaspersoft.jasperserver.multipleTenancy.MTWebAuthenticationDetails@21a2c: RemoteIpAddress: 24.229.67.15; SessionId: B00DA849E9FD09597CBE178BD5646BC9; Granted Authorities: com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.TenantAwareGrantedAuthority@66d93365, com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.TenantAwareGrantedAuthority@3cd648f3 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.access.vote.RoleVoter@501f90df, returned: 0 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@415e40d7, returned: 0 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@7d8f7501, returned: 0 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: org.springframework.security.acls.AclEntryVoter@32b8139b, returned: 0 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:102 - looked up perms for execute: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:102 - looked up perms for execute: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:112 - Effective permissions: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:112 - Effective permissions: [Lorg.springframework.security.acls.model.Permission;@3aa38f18 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[...............................A=1] 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[...............................A=1] 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..............................R.=2] 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..............................R.=2] 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..........................X.....=32] 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:114 - JasperServerPermission[..........................X.....=32] 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:135 - calling getResource on /organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:135 - calling getResource on /organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,602 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1/datasources/CarloggerProduction 2018-01-25 14:38:36,602 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1/datasources 2018-01-25 14:38:36,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1 2018-01-25 14:38:36,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations/organization_1 2018-01-25 14:38:36,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/organizations 2018-01-25 14:38:36,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: aclCache store hit for repo:/ 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:176 - Voting to grant access 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ContextSensitiveAclEntryVoter:176 - Voting to grant access 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AffirmativeBased:65 - Voter: com.jaspersoft.jasperserver.api.metadata.security.ContextSensitiveAclEntryVoter@14caffd7, returned: 1 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:215 - Authorization successful 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 MethodSecurityInterceptor:227 - RunAsManager did not change Authentication object 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getResource(com.jaspersoft.jasperserver.api.common.domain.impl.ExecutionContextImpl@27693d2, /organizations/organization_1/datasources/CarloggerProduction, interface com.jaspersoft.jasperserver.api.metadata.common.domain.Resource) 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:61 - getResource(com.jaspersoft.jasperserver.api.common.domain.impl.ExecutionContextImpl@27693d2, /organizations/organization_1/datasources/CarloggerProduction, interface com.jaspersoft.jasperserver.api.metadata.common.domain.Resource) 2018-01-25 14:38:36,652 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,653 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@7b359d18] for Hibernate transaction 2018-01-25 14:38:36,653 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:36,653 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl:1146 - Looking for name: CarloggerProduction in folder: /organizations/organization_1/datasources 2018-01-25 14:38:36,653 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl:1146 - Looking for name: CarloggerProduction in folder: /organizations/organization_1/datasources 2018-01-25 14:38:36,654 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,654 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,654 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select this_.id as id5_0_, this_.version as version5_0_, this_.uri as uri5_0_, this_.hidden as hidden5_0_, this_.name as name5_0_, this_.label as label5_0_, this_.description as descript7_5_0_, this_.parent_folder as parent8_5_0_, this_.creation_date as creation9_5_0_, this_.update_date as update10_5_0_ from JIResourceFolder this_ where (this_.uri=?) 2018-01-25 14:38:36,668 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,668 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,668 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,669 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,669 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,669 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,670 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846 2018-01-25 14:38:36,670 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846] 2018-01-25 14:38:36,670 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,671 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,671 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,671 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,671 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:36,671 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846] (uninitialized) 2018-01-25 14:38:36,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846] (uninitialized) 2018-01-25 14:38:36,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:36,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections 2018-01-25 14:38:36,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#27, updateDate=2017-10-31 19:31:49, subFolders=<uninitialized>, hidden=false, children=<uninitialized>, name=datasources, description=Data Sources used by reports, id=846, label=Data Sources, creationDate=2017-11-02 21:46:18, version=0, URI=/organizations/organization_1/datasources} 2018-01-25 14:38:36,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:36,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select this_.id as id6_0_, this_.version as version6_0_, this_.name as name6_0_, this_.parent_folder as parent4_6_0_, this_.childrenFolder as children5_6_0_, this_.label as label6_0_, this_.description as descript7_6_0_, this_.resourceType as resource8_6_0_, this_.creation_date as creation9_6_0_, this_.update_date as update10_6_0_, this_1_.catalog as catalog26_0_, this_1_.mondrianConnection as mondrian3_26_0_, this_2_.adhocStateId as adhocSta2_35_0_, this_3_.foundationsString as foundati2_37_0_, this_3_.resourcesString as resource3_37_0_, this_3_.defaultFoundation as defaultF4_37_0_, this_4_.adhocStateId as adhocSta2_39_0_, this_4_.reportDataSource as reportDa3_39_0_, this_4_.promptcontrols as promptco4_39_0_, this_4_.controlslayout as controls5_39_0_, this_4_.controlrenderer as controlr6_39_0_, this_5_.options_name as options2_48_0_, this_5_.report_id as report3_48_0_, this_6_.schema_id as schema2_50_0_, this_6_.security_id as security3_50_0_, this_7_.beanName as beanName53_0_, this_7_.beanMethod as beanMethod53_0_, this_8_.file_type as file3_4_0_, this_8_.reference as reference4_0_, this_9_.type as type54_0_, this_9_.mandatory as mandatory54_0_, this_9_.readOnly as readOnly54_0_, this_9_.visible as visible54_0_, this_9_.data_type as data6_54_0_, this_9_.list_of_values as list7_54_0_, this_9_.list_query as list8_54_0_, this_9_.query_value_column as query9_54_0_, this_9_.defaultValue as default10_54_0_, this_10_.timezone as timezone56_0_, this_11_.serviceClass as serviceC2_58_0_, this_12_.olapClientConnection as olapClie2_61_0_, this_12_.mdx_query as mdx3_61_0_, this_12_.view_options as view4_61_0_, this_13_.file_type as file3_62_0_, this_14_.reportDataSource as reportDa2_63_0_, this_14_.query as query63_0_, this_14_.mainReport as mainReport63_0_, this_14_.controlrenderer as controlr5_63_0_, this_14_.reportrenderer as reportre6_63_0_, this_14_.promptcontrols as promptco7_63_0_, this_14_.controlslayout as controls8_63_0_, this_14_.data_snapshot_id as data9_63_0_, this_15_.adhocStateId as adhocSta2_66_0_, this_16_.type as type67_0_, this_16_.maxLength as maxLength67_0_, this_16_.decimals as decimals67_0_, this_16_.regularExpr as regularE5_67_0_, this_16_.minValue as minValue67_0_, this_16_.max_value as max7_67_0_, this_16_.strictMin as strictMin67_0_, this_16_.strictMax as strictMax67_0_, this_19_.jndiName as jndiName71_0_, this_19_.timezone as timezone71_0_, this_20_.dataSource as dataSource72_0_, this_20_.query_language as query3_72_0_, this_20_.sql_query as sql4_72_0_, this_21_.driver as driver73_0_, this_21_.password as password73_0_, this_21_.connectionUrl as connecti4_73_0_, this_21_.username as username73_0_, this_21_.timezone as timezone73_0_, this_22_.keyStore_id as keyStore2_74_0_, this_22_.keyStorePassword as keyStore3_74_0_, this_22_.keyStoreType as keyStore4_74_0_, this_22_.subscriptionId as subscrip5_74_0_, this_22_.serverName as serverName74_0_, this_22_.dbName as dbName74_0_, this_23_.accessKey as accessKey75_0_, this_23_.secretKey as secretKey75_0_, this_23_.roleARN as roleARN75_0_, this_23_.region as region75_0_, this_23_.dbName as dbName75_0_, this_23_.dbInstanceIdentifier as dbInstan7_75_0_, this_23_.dbService as dbService75_0_, this_25_.reportDataSource as reportDa2_77_0_, this_25_.mondrianSchema as mondrian3_77_0_, this_26_.catalog as catalog79_0_, this_26_.username as username79_0_, this_26_.password as password79_0_, this_26_.datasource as datasource79_0_, this_26_.uri as uri79_0_, case when this_15_.id is not null then 15 when this_17_.id is not null then 17 when this_22_.id is not null then 22 when this_23_.id is not null then 23 when this_25_.id is not null then 25 when this_26_.id is not null then 26 when this_1_.id is not null then 1 when this_2_.id is not null then 2 when this_3_.id is not null then 3 when this_4_.id is not null then 4 when this_5_.id is not null then 5 when this_6_.id is not null then 6 when this_7_.id is not null then 7 when this_8_.id is not null then 8 when this_9_.id is not null then 9 when this_10_.id is not null then 10 when this_11_.id is not null then 11 when this_12_.id is not null then 12 when this_13_.id is not null then 13 when this_14_.id is not null then 14 when this_16_.id is not null then 16 when this_18_.id is not null then 18 when this_19_.id is not null then 19 when this_20_.id is not null then 20 when this_21_.id is not null then 21 when this_24_.id is not null then 24 when this_.id is not null then 0 end as clazz_0_ from JIResource this_ left outer join JIMondrianXMLADefinition this_1_ on this_.id=this_1_.id left outer join JIDashboard this_2_ on this_.id=this_2_.id left outer join JIDashboardModel this_3_ on this_.id=this_3_.id left outer join JIAdhocDataView this_4_ on this_.id=this_4_.id left outer join JIReportOptions this_5_ on this_.id=this_5_.id left outer join JIDomainDatasource this_6_ on this_.id=this_6_.id left outer join JIBeanDatasource this_7_ on this_.id=this_7_.id left outer join JIFileResource this_8_ on this_.id=this_8_.id left outer join JIInputControl this_9_ on this_.id=this_9_.id left outer join JIVirtualDatasource this_10_ on this_.id=this_10_.id left outer join JICustomDatasource this_11_ on this_.id=this_11_.id left outer join JIOlapUnit this_12_ on this_.id=this_12_.id left outer join JIContentResource this_13_ on this_.id=this_13_.id left outer join JIReportUnit this_14_ on this_.id=this_14_.id left outer join JIAdhocReportUnit this_15_ on this_.id=this_15_.id left outer join JIDataType this_16_ on this_.id=this_16_.id left outer join JIDataDefinerUnit this_17_ on this_.id=this_17_.id left outer join JIListOfValues this_18_ on this_.id=this_18_.id left outer join JIJNDIJdbcDatasource this_19_ on this_.id=this_19_.id left outer join JIQuery this_20_ on this_.id=this_20_.id left outer join JIJdbcDatasource this_21_ on this_.id=this_21_.id left outer join JIAzureSqlDatasource this_22_ on this_.id=this_22_.id left outer join JIAwsDatasource this_23_ on this_.id=this_23_.id left outer join JIOlapClientConnection this_24_ on this_.id=this_24_.id left outer join JIMondrianConnection this_25_ on this_.id=this_25_.id left outer join JIXMLAConnection this_26_ on this_.id=this_26_.id where (this_.name=? and this_.parent_folder=?) 2018-01-25 14:38:36,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:36,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource#2460] 2018-01-25 14:38:36,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:36,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:36,788 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:158 - adding entity to second-level cache: [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource#2460 2018-01-25 14:38:36,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource#2460] 2018-01-25 14:38:36,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:36,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateRepositoryServiceImpl$1:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:36,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 PasswordCipherer:123 - Decode password: true 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getResource returned in 165 ms 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EasyXMLizer:109 - getResource returned in 165 ms 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@7b359d18] 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:36,817 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:36,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.children#846] (uninitialized) 2018-01-25 14:38:36,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder.subFolders#846] (uninitialized) 2018-01-25 14:38:36,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.accessEvents#2460], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.accessEvents#2460] (uninitialized) 2018-01-25 14:38:36,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.thumbnails#2460], was: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoResource.thumbnails#2460] (uninitialized) 2018-01-25 14:38:36,818 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects 2018-01-25 14:38:36,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 4 collections 2018-01-25 14:38:36,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:36,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#27, updateDate=2017-10-31 19:31:49, subFolders=<uninitialized>, hidden=false, children=<uninitialized>, name=datasources, description=Data Sources used by reports, id=846, label=Data Sources, creationDate=2017-11-02 21:46:18, version=0, URI=/organizations/organization_1/datasources} 2018-01-25 14:38:36,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.impl.datasource.RepoAwsDataSource{parent=com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.RepoFolder#846, updateDate=2016-10-16 01:25:33, secretKey=4543D437FBAE54873FA3687C502867515BE388E87B3722EC6E2DE2B095EC2F63BD85EFA7D30771D88678FF8EB956FC06, dbInstanceIdentifier=carlogger-production, timezone=, dbName=carlogger, description=null, childrenFolder=null, label=CarloggerProduction, creationDate=2018-01-22 22:17:36, version=1, password=CD86A72F77CC9B0D465CEF0193481D51, accessKey=23D5A973F35D1B4947756476FBA4099BEA08BEA6B8C4CBC5, driverClass=org.mariadb.jdbc.Driver, roleARN=, name=CarloggerProduction, connectionUrl=jdbc:mysql://carlogger-production.cwhwdsfgorqd.us-east-1.rds.amazonaws.com:3306/carlogger, accessEvents=<uninitialized>, id=2460, thumbnails=<uninitialized>, region=us-east-1.amazonaws.com, dbService=rds, resourceType=com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.AwsReportDataSource, username=veridian} 2018-01-25 14:38:36,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:36,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:36,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@7b359d18] after transaction 2018-01-25 14:38:36,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:36,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:36,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:36,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:1140 - running report with data source 2018-01-25 14:38:36,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:1140 - running report with data source 2018-01-25 14:38:36,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'awsDataSourceServiceFactory' 2018-01-25 14:38:36,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'profileAttributesResolverAspect' 2018-01-25 14:38:36,966 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JdbcReportDataSourceServiceFactory:156 - Creating connection pool for driver="org.mariadb.jdbc.Driver", url="jdbc:mysql://carlogger-production.cwhwdsfgorqd.us-east-1.rds.amazonaws.com:3306/carlogger", username="veridian". 2018-01-25 14:38:36,966 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JdbcReportDataSourceServiceFactory:156 - Creating connection pool for driver="org.mariadb.jdbc.Driver", url="jdbc:mysql://carlogger-production.cwhwdsfgorqd.us-east-1.rds.amazonaws.com:3306/carlogger", username="veridian". 2018-01-25 14:38:36,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'propertiesManagementService' 2018-01-25 14:38:36,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:36,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.getProfileAttributesForPrincipal]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:36,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186015223808 2018-01-25 14:38:36,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@3a5ea8a1] for Hibernate transaction 2018-01-25 14:38:36,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@3a5ea8a1] 2018-01-25 14:38:36,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:36,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:37,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:37,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:37,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:37,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@3a5ea8a1] for Hibernate transaction 2018-01-25 14:38:37,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@3a5ea8a1] for Hibernate transaction 2018-01-25 14:38:37,007 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:37,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organizations, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:37,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:37,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:37,039 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:37,039 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:37,040 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:37,040 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,041 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,041 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,041 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,041 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,042 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,042 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,042 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,063 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:37,063 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select repoprofil0_.id as id12_, repoprofil0_.attrName as attrName12_, repoprofil0_.attrValue as attrValue12_, repoprofil0_.description as descript4_12_, repoprofil0_.owner as owner12_, repoprofil0_.principalobjectclass as principa6_12_, repoprofil0_.principalobjectid as principa7_12_ from JIProfileAttribute repoprofil0_ where repoprofil0_.principalobjectclass=? and repoprofil0_.principalobjectid=? 2018-01-25 14:38:37,064 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:37,065 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#2] 2018-01-25 14:38:37,066 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3116] 2018-01-25 14:38:37,066 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3117] 2018-01-25 14:38:37,067 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3652] 2018-01-25 14:38:37,067 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3922] 2018-01-25 14:38:37,068 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Loader:1197 - result row: EntityKey[com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3992] 2018-01-25 14:38:37,068 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:37,068 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:37,069 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#2] 2018-01-25 14:38:37,069 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#2] 2018-01-25 14:38:37,069 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3116] 2018-01-25 14:38:37,070 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3116] 2018-01-25 14:38:37,070 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3117] 2018-01-25 14:38:37,070 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3117] 2018-01-25 14:38:37,071 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3652] 2018-01-25 14:38:37,071 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3652] 2018-01-25 14:38:37,072 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3922] 2018-01-25 14:38:37,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3922] 2018-01-25 14:38:37,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:130 - resolving associations for [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3992] 2018-01-25 14:38:37,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TwoPhaseLoad:226 - done materializing entity [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute#3992] 2018-01-25 14:38:37,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,104 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,104 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,225 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,225 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.changes.enabled 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.name 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.description 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.ingressPublicIp 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,226 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsPropertyChanger:67 - getting AWS property: aws.db.security.group.suppressEc2CredentialsWarnings 2018-01-25 14:38:37,260 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:37,260 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@3a5ea8a1] 2018-01-25 14:38:37,260 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:37,261 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,261 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,261 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,261 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,262 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 7 objects 2018-01-25 14:38:37,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute{owner=organizations, principal=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, description=null, id=3992, attrValue=true, attrName=adhoc.displayNullAsZeroForAggregateValue} 2018-01-25 14:38:37,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute{owner=organizations, principal=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, description=null, id=3652, attrValue=org_mariadb_jdbc_Driver, attrName=jdbc:org.mariadb.jdbc.Driver_backup} 2018-01-25 14:38:37,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute{owner=organizations, principal=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, description=null, id=2, attrValue=*, attrName=domainWhitelist} 2018-01-25 14:38:37,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute{owner=organizations, principal=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, description=null, id=3922, attrValue=false, attrName=adhoc.domainDataStrategy} 2018-01-25 14:38:37,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute{owner=organizations, principal=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, description=null, id=3117, attrValue=[sYSTEM], attrName=jdbc:org.postgresql.Driver} 2018-01-25 14:38:37,289 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoProfileAttribute{owner=organizations, principal=com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1, description=null, id=3116, attrValue=[sYSTEM], attrName=jdbc:com.mysql.jdbc.Driver} 2018-01-25 14:38:37,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:37,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:37,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@3a5ea8a1] after transaction 2018-01-25 14:38:37,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:37,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:37,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AnnotationTransactionAttributeSource:107 - Adding transactional method 'ProfileAttributeServiceImpl.newProfileAttribute' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.newProfileAttribute]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186016632832 2018-01-25 14:38:37,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@6740249c] for Hibernate transaction 2018-01-25 14:38:37,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@6740249c] 2018-01-25 14:38:37,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:37,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:37,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:37,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:37,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:37,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:37,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@6740249c] 2018-01-25 14:38:37,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:37,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:37,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:37,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@6740249c] after transaction 2018-01-25 14:38:37,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:37,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:37,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,373 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AnnotationTransactionAttributeSource:107 - Adding transactional method 'ProfileAttributeServiceImpl.getChangerName' with attribute: PROPAGATION_SUPPORTS,ISOLATION_DEFAULT,readOnly; '' 2018-01-25 14:38:37,373 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AnnotationTransactionAttributeSource:107 - Adding transactional method 'ProfileAttributeServiceImpl.getProfileAttribute' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.getProfileAttribute]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186016763904 2018-01-25 14:38:37,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@177e96b] for Hibernate transaction 2018-01-25 14:38:37,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@177e96b] 2018-01-25 14:38:37,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:37,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:37,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:37,401 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:37,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:37,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@177e96b] for Hibernate transaction 2018-01-25 14:38:37,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@177e96b] for Hibernate transaction 2018-01-25 14:38:37,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:37,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organizations, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:37,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:37,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:37,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:37,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:37,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:37,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:37,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select repoprofil0_.id as id12_, repoprofil0_.attrName as attrName12_, repoprofil0_.attrValue as attrValue12_, repoprofil0_.description as descript4_12_, repoprofil0_.owner as owner12_, repoprofil0_.principalobjectclass as principa6_12_, repoprofil0_.principalobjectid as principa7_12_ from JIProfileAttribute repoprofil0_ where (repoprofil0_.principalobjectid in (?)) and repoprofil0_.principalobjectclass=? and (repoprofil0_.attrName in (?)) order by repoprofil0_.id asc 2018-01-25 14:38:37,476 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:37,477 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:37,477 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:37,477 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,478 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,478 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,478 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ProfileAttributeServiceImpl:694 - Read configuration property jdbc:org.mariadb.jdbc.Driver = [sYSTEM] 2018-01-25 14:38:37,478 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ProfileAttributeServiceImpl:694 - Read configuration property jdbc:org.mariadb.jdbc.Driver = [sYSTEM] 2018-01-25 14:38:37,478 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:37,479 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@177e96b] 2018-01-25 14:38:37,479 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:37,479 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,480 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,480 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,480 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,480 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,481 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:37,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:37,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@177e96b] after transaction 2018-01-25 14:38:37,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:37,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:37,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.newProfileAttribute]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186017366016 2018-01-25 14:38:37,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@66b24e7e] for Hibernate transaction 2018-01-25 14:38:37,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@66b24e7e] 2018-01-25 14:38:37,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:37,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:37,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:37,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:37,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:37,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:37,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@66b24e7e] 2018-01-25 14:38:37,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:37,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:37,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:37,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@66b24e7e] after transaction 2018-01-25 14:38:37,526 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:37,526 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:37,526 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,527 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,527 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,527 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.getProfileAttribute]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186017394688 2018-01-25 14:38:37,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@21797940] for Hibernate transaction 2018-01-25 14:38:37,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@21797940] 2018-01-25 14:38:37,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:37,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:37,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:37,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:37,558 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:37,558 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@21797940] for Hibernate transaction 2018-01-25 14:38:37,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@21797940] for Hibernate transaction 2018-01-25 14:38:37,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:37,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organizations, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:37,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:37,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:37,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:37,568 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:37,568 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:37,569 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,569 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,569 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,570 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,570 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,600 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,601 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,602 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:37,602 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select repoprofil0_.id as id12_, repoprofil0_.attrName as attrName12_, repoprofil0_.attrValue as attrValue12_, repoprofil0_.description as descript4_12_, repoprofil0_.owner as owner12_, repoprofil0_.principalobjectclass as principa6_12_, repoprofil0_.principalobjectid as principa7_12_ from JIProfileAttribute repoprofil0_ where (repoprofil0_.principalobjectid in (?)) and repoprofil0_.principalobjectclass=? and (repoprofil0_.attrName in (?)) order by repoprofil0_.id asc 2018-01-25 14:38:37,603 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:37,603 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:37,604 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:37,604 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,604 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,604 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ProfileAttributeServiceImpl:694 - Read configuration property jdbc:org.mariadb.jdbc.Driver = [sYSTEM] 2018-01-25 14:38:37,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ProfileAttributeServiceImpl:694 - Read configuration property jdbc:org.mariadb.jdbc.Driver = [sYSTEM] 2018-01-25 14:38:37,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:37,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@21797940] 2018-01-25 14:38:37,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:37,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,607 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,607 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,607 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,607 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:37,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:37,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@21797940] after transaction 2018-01-25 14:38:37,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:37,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:37,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AnnotationTransactionAttributeSource:107 - Adding transactional method 'ProfileAttributeServiceImpl.deleteProfileAttribute' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:366 - Creating new transaction with name [com.jaspersoft.jasperserver.api.metadata.user.service.impl.ProfileAttributeServiceImpl.deleteProfileAttribute]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 2018-01-25 14:38:37,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionImpl:248 - opened session at timestamp: 6213186017800192 2018-01-25 14:38:37,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:494 - Opened new Session [org.hibernate.impl.SessionImpl@2f84da48] for Hibernate transaction 2018-01-25 14:38:37,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:505 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@2f84da48] 2018-01-25 14:38:37,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:82 - begin 2018-01-25 14:38:37,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:444 - opening JDBC connection 2018-01-25 14:38:37,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:87 - current autocommit status: true 2018-01-25 14:38:37,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:90 - disabling autocommit 2018-01-25 14:38:37,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:570 - Exposing Hibernate transaction as JDBC transaction [jdbc:postgresql://127.0.0.1:5432/jasperserver, UserName=postgres, PostgreSQL Native Driver] 2018-01-25 14:38:37,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@2f84da48] for Hibernate transaction 2018-01-25 14:38:37,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DefaultListableBeanFactory:243 - Returning cached instance of singleton bean 'transactionManager' 2018-01-25 14:38:37,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:438 - Found thread-bound Session [org.hibernate.impl.SessionImpl@2f84da48] for Hibernate transaction 2018-01-25 14:38:37,655 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:471 - Participating in existing transaction 2018-01-25 14:38:37,656 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,656 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,657 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:127 - checking cached query results in region: org.hibernate.cache.StandardQueryCache 2018-01-25 14:38:37,657 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: sql: select this_.id as id10_0_, this_.tenantId as tenantId10_0_, this_.tenantAlias as tenantAl3_10_0_, this_.parentId as parentId10_0_, this_.tenantName as tenantName10_0_, this_.tenantDesc as tenantDesc10_0_, this_.tenantNote as tenantNote10_0_, this_.tenantUri as tenantUri10_0_, this_.tenantFolderUri as tenantFo9_10_0_, this_.theme as theme10_0_ from JITenant this_ where this_.tenantId ilike ?; parameters: organizations, ; transformer: org.hibernate.transform.RootEntityResultTransformer@7a25088f 2018-01-25 14:38:37,658 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:185 - Checking query spaces for up-to-dateness: [JITenant] 2018-01-25 14:38:37,658 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:57 - key: JITenant 2018-01-25 14:38:37,659 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EhcacheGeneralDataRegion:63 - Element for key JITenant is null 2018-01-25 14:38:37,659 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StandardQueryCache:142 - returning cached query results 2018-01-25 14:38:37,663 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Cache:1973 - Cache: defaultRepoCache store hit for com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant#1 2018-01-25 14:38:37,664 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:398 - Found thread-bound Session for HibernateTemplate 2018-01-25 14:38:37,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,699 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,699 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,700 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,700 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0) 2018-01-25 14:38:37,700 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SQL:111 - select repoprofil0_.id as id12_, repoprofil0_.attrName as attrName12_, repoprofil0_.attrValue as attrValue12_, repoprofil0_.description as descript4_12_, repoprofil0_.owner as owner12_, repoprofil0_.principalobjectclass as principa6_12_, repoprofil0_.principalobjectid as principa7_12_ from JIProfileAttribute repoprofil0_ where (repoprofil0_.principalobjectid in (?)) and repoprofil0_.principalobjectclass=? and (repoprofil0_.attrName in (?)) order by repoprofil0_.id asc 2018-01-25 14:38:37,704 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:426 - about to open ResultSet (open ResultSets: 0, globally: 0) 2018-01-25 14:38:37,720 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:433 - about to close ResultSet (open ResultSets: 1, globally: 1) 2018-01-25 14:38:37,720 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1) 2018-01-25 14:38:37,721 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 StatefulPersistenceContext:860 - initializing non-lazy collections 2018-01-25 14:38:37,721 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,721 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateDaoTemplate:423 - Not closing pre-bound Hibernate Session after HibernateTemplate 2018-01-25 14:38:37,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:753 - Initiating transaction commit 2018-01-25 14:38:37,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:654 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@2f84da48] 2018-01-25 14:38:37,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:134 - commit 2018-01-25 14:38:37,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:134 - processing flush-time cascades 2018-01-25 14:38:37,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:177 - dirty checking collections 2018-01-25 14:38:37,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.subTenants#1] (uninitialized) 2018-01-25 14:38:37,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.users#1] (uninitialized) 2018-01-25 14:38:37,736 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Collections:199 - Collection found: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1], was: [com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant.roles#1] (uninitialized) 2018-01-25 14:38:37,736 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:108 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects 2018-01-25 14:38:37,737 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 3 collections 2018-01-25 14:38:37,737 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:106 - listing entities: 2018-01-25 14:38:37,737 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 Printer:113 - com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoTenant{parent=null, tenantDesc=organizations, roles=<uninitialized>, tenantFolderUri=/, users=<uninitialized>, subTenants=<uninitialized>, tenantUri=/, tenantName=root, tenantId=organizations, theme=default, id=1, tenantAlias=organizations, tenantNote= } 2018-01-25 14:38:37,738 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:227 - re-enabling autocommit 2018-01-25 14:38:37,738 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JDBCTransaction:147 - committed JDBC Connection 2018-01-25 14:38:37,738 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:37,739 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 HibernateTransactionManager:736 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@2f84da48] after transaction 2018-01-25 14:38:37,739 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SessionFactoryUtils:800 - Closing Hibernate Session 2018-01-25 14:38:37,739 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)] 2018-01-25 14:38:37,739 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ConnectionManager:325 - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources! 2018-01-25 14:38:39,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsDataSourceService:103 - Create Connection successful at com.jaspersoft.jasperserver.api.engine.jasperreports.service.impl.AwsDataSourceService.createConnection 2018-01-25 14:38:39,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AwsDataSourceService:103 - Create Connection successful at com.jaspersoft.jasperserver.api.engine.jasperreports.service.impl.AwsDataSourceService.createConnection 2018-01-25 14:38:39,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:862 - Filling report for request 360302370_1516891115651_1 2018-01-25 14:38:39,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:862 - Filling report for request 360302370_1516891115651_1 2018-01-25 14:38:40,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BaseReportFiller:149 - Fill 1: created for TitlesMissingReport 2018-01-25 14:38:40,051 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.style.StyleProviderFactory 2018-01-25 14:38:40,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.style.StyleProviderFactory 2018-01-25 14:38:40,052 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.style.StyleProviderFactory 2018-01-25 14:38:40,053 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.style.StyleProviderFactory 2018-01-25 14:38:40,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: Buyer,bandType: GROUP_HEADER} for band 1860275365 2018-01-25 14:38:40,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: Buyer,bandType: GROUP_FOOTER} for band 1538787238 2018-01-25 14:38:40,091 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: VendorGroup,bandType: GROUP_HEADER} for band 62669940 2018-01-25 14:38:40,091 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: VendorGroup,bandType: GROUP_FOOTER} for band 1803543069 2018-01-25 14:38:40,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BaseReportFiller:188 - created delayed actions 1 for filler 1 2018-01-25 14:38:40,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.fonts.FontFamily 2018-01-25 14:38:40,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.fonts.FontFamily 2018-01-25 14:38:40,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 FontExtensionsRegistry:88 - Loading font extensions from net/sf/jasperreports/fonts/fonts.xml 2018-01-25 14:38:40,137 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.RepositoryService 2018-01-25 14:38:40,138 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.RepositoryService 2018-01-25 14:38:40,138 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.RepositoryService 2018-01-25 14:38:40,163 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.RepositoryService 2018-01-25 14:38:40,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.PersistenceServiceFactory 2018-01-25 14:38:40,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.PersistenceServiceFactory 2018-01-25 14:38:40,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.PersistenceServiceFactory 2018-01-25 14:38:40,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.repo.PersistenceServiceFactory 2018-01-25 14:38:40,169 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family DejaVu Sans 2018-01-25 14:38:40,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSans.ttf 2018-01-25 14:38:40,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSans-Bold.ttf 2018-01-25 14:38:40,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSans-Oblique.ttf 2018-01-25 14:38:40,293 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSans-BoldOblique.ttf 2018-01-25 14:38:40,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family DejaVu Serif 2018-01-25 14:38:40,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSerif.ttf 2018-01-25 14:38:40,332 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSerif-Bold.ttf 2018-01-25 14:38:40,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSerif-Italic.ttf 2018-01-25 14:38:40,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSerif-BoldItalic.ttf 2018-01-25 14:38:40,386 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family DejaVu Sans Mono 2018-01-25 14:38:40,387 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSansMono.ttf 2018-01-25 14:38:40,402 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSansMono-Bold.ttf 2018-01-25 14:38:40,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSansMono-Oblique.ttf 2018-01-25 14:38:40,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/dejavu/DejaVuSansMono-BoldOblique.ttf 2018-01-25 14:38:40,428 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family SansSerif 2018-01-25 14:38:40,428 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family Serif 2018-01-25 14:38:40,428 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family Monospaced 2018-01-25 14:38:40,428 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.fonts.FontFamily 2018-01-25 14:38:40,429 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 FontExtensionsRegistry:88 - Loading font extensions from net/sf/jasperreports/fonts/jasperreports-fonts.xml 2018-01-25 14:38:40,430 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family JasperReports Icons 2018-01-25 14:38:40,430 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/icons/icons.ttf 2018-01-25 14:38:40,433 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontExtensionHelper:293 - Parsing font family Pictonic 2018-01-25 14:38:40,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleFontFace:177 - Loading font net/sf/jasperreports/fonts/icons/icons.ttf 2018-01-25 14:38:40,448 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SpringExtensionsRegistry:115 - Found 0 beans for extension type interface net.sf.jasperreports.engine.fonts.FontFamily 2018-01-25 14:38:40,449 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: BACKGROUND} for band 1012121543 2018-01-25 14:38:40,449 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: TITLE} for band 1416942000 2018-01-25 14:38:40,450 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: PAGE_HEADER} for band 2005485063 2018-01-25 14:38:40,450 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: COLUMN_HEADER} for band 648379431 2018-01-25 14:38:40,451 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: DETAIL} for band 48057567 2018-01-25 14:38:40,452 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: COLUMN_FOOTER} for band 1310296118 2018-01-25 14:38:40,452 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: PAGE_FOOTER} for band 1534560982 2018-01-25 14:38:40,452 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillBand:190 - Origin {reportName: null, groupName: null,bandType: SUMMARY} for band 586148539 2018-01-25 14:38:40,454 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:101 - Filler 1 - pageHeight: 792, columnFooterOffsetY: 719, lastPageColumnFooterOffsetY: 752 2018-01-25 14:38:40,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:534 - Fill 1: filling report 2018-01-25 14:38:40,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BaseReportFiller:341 - Fill 1: using virtualizer net.sf.jasperreports.engine.fill.JRFileVirtualizer@55c6763e 2018-01-25 14:38:40,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BaseReportFiller:356 - filler 1 created virtualization context net.sf.jasperreports.engine.fill.JRVirtualizationContext@10befb28 2018-01-25 14:38:40,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1004 - max page width is 2097152000 2018-01-25 14:38:40,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:71 - creating data recorder 2018-01-25 14:38:40,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:202 - Creating ColumnDataCollector 2018-01-25 14:38:40,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@713839811 for field client_id 2018-01-25 14:38:40,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1890885229 for field client_name 2018-01-25 14:38:40,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@879099253 for field product_title_id 2018-01-25 14:38:40,544 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1739760245 for field purchase_date 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1011028455 for field buyer_id 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1973876017 for field serial_number 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1089995730 for field purchased_from_id 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@798538309 for field vin 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1289293156 for field make 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1707272362 for field model 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1458680384 for field style 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@989092276 for field year 2018-01-25 14:38:40,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@182081370 for field username 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1363459209 for field first_name 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1287616836 for field last_name 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1514364449 for field email 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1162757368 for field status 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@331425457 for field title_number 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@892810778 for field origin_state 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1650641882 for field assignment_date 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@571805825 for field mileage 2018-01-25 14:38:40,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1253830710 for field title_notes 2018-01-25 14:38:40,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@491150649 for field stock_number 2018-01-25 14:38:40,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@675010916 for field sale_date 2018-01-25 14:38:40,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@2116918703 for field buyer_first_name 2018-01-25 14:38:40,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@268571299 for field vendor_name 2018-01-25 14:38:40,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@1042868573 for field vendor_phone 2018-01-25 14:38:40,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:296 - created store TypedColumnStore@2025988274 for field vendor_email 2018-01-25 14:38:40,550 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:864 - Populating data cache for [{datasetUUID:89fdc7ba-fc50-43d9-8cb8-a94203ac0074,queryMD5:50540d03f8183a215137b37fead8f41f,}] 2018-01-25 14:38:40,550 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:1238 - Fill 1: Creating SQL query executer 2018-01-25 14:38:40,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:152 - DB is MySQL version 5.6.34-log (5/6) 2018-01-25 14:38:40,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:156 - driver is MariaDB connector/J version 1.3.6 (1/3) 2018-01-25 14:38:40,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:160 - jdbc 4/0 2018-01-25 14:38:40,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:162 - connection URL is jdbc:mysql://carlogger-production.cwhwdsfgorqd.us-east-1.rds.amazonaws.com:3306/carlogger 2018-01-25 14:38:40,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:204 - system timezone is sun.util.calendar.ZoneInfo[id="Universal",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null] 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:205 - report timezone is sun.util.calendar.ZoneInfo[id="Universal",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null] 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:206 - JDBC timezone parameter is null 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:207 - JDBC timezone property is null 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:213 - JDBC parameters timezone parameter is null 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:225 - JDBC parameters timezone property is null 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:232 - parameters timezone null 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:238 - JDBC fields timezone parameter is null 2018-01-25 14:38:40,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:250 - JDBC fields timezone property is null 2018-01-25 14:38:40,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:257 - fields timezone null 2018-01-25 14:38:40,654 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:232 - Custom ESAPI security configuration is used. 2018-01-25 14:38:40,654 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:232 - Custom ESAPI security configuration is used. 2018-01-25 14:38:40,654 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:435 - Attempting to load ESAPI.properties via file I/O. 2018-01-25 14:38:40,654 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:435 - Attempting to load ESAPI.properties via file I/O. 2018-01-25 14:38:40,654 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:531 - Attempting to load ESAPI.properties as resource file via file I/O. 2018-01-25 14:38:40,654 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:531 - Attempting to load ESAPI.properties as resource file via file I/O. 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:547 - Not found in 'org.owasp.esapi.resources' directory or file not readable: /usr/share/tomcat8/ESAPI.properties 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:547 - Not found in 'org.owasp.esapi.resources' directory or file not readable: /usr/share/tomcat8/ESAPI.properties 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:567 - Not found in SystemResource Directory/resourceDirectory: .esapi/ESAPI.properties 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:567 - Not found in SystemResource Directory/resourceDirectory: .esapi/ESAPI.properties 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:591 - Not found in 'user.home' (/usr/share/tomcat8) directory: /usr/share/tomcat8/esapi/ESAPI.properties 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:591 - Not found in 'user.home' (/usr/share/tomcat8) directory: /usr/share/tomcat8/esapi/ESAPI.properties 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:440 - Loading ESAPI.properties via file I/O failed. 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:440 - Loading ESAPI.properties via file I/O failed. 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:441 - Attempting to load ESAPI.properties via the classpath. 2018-01-25 14:38:40,655 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:441 - Attempting to load ESAPI.properties via the classpath. 2018-01-25 14:38:40,666 WARN superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:656 - SUCCESSFULLY LOADED ESAPI.properties via the CLASSPATH from 'esapi/' using current thread context class loader! 2018-01-25 14:38:40,666 WARN superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:656 - SUCCESSFULLY LOADED ESAPI.properties via the CLASSPATH from 'esapi/' using current thread context class loader! 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:461 - Attempting to load validation.properties via file I/O. 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:461 - Attempting to load validation.properties via file I/O. 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:531 - Attempting to load validation.properties as resource file via file I/O. 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:531 - Attempting to load validation.properties as resource file via file I/O. 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:547 - Not found in 'org.owasp.esapi.resources' directory or file not readable: /usr/share/tomcat8/validation.properties 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:547 - Not found in 'org.owasp.esapi.resources' directory or file not readable: /usr/share/tomcat8/validation.properties 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:567 - Not found in SystemResource Directory/resourceDirectory: .esapi/validation.properties 2018-01-25 14:38:40,666 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:567 - Not found in SystemResource Directory/resourceDirectory: .esapi/validation.properties 2018-01-25 14:38:40,667 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:591 - Not found in 'user.home' (/usr/share/tomcat8) directory: /usr/share/tomcat8/esapi/validation.properties 2018-01-25 14:38:40,667 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:591 - Not found in 'user.home' (/usr/share/tomcat8) directory: /usr/share/tomcat8/esapi/validation.properties 2018-01-25 14:38:40,667 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:466 - Loading validation.properties via file I/O failed. 2018-01-25 14:38:40,667 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:466 - Loading validation.properties via file I/O failed. 2018-01-25 14:38:40,667 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:467 - Attempting to load validation.properties via the classpath. 2018-01-25 14:38:40,667 INFO superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:467 - Attempting to load validation.properties via the classpath. 2018-01-25 14:38:40,669 WARN superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:656 - SUCCESSFULLY LOADED validation.properties via the CLASSPATH from 'esapi/' using current thread context class loader! 2018-01-25 14:38:40,669 WARN superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JSESAPISecurityConfiguration:656 - SUCCESSFULLY LOADED validation.properties via the CLASSPATH from 'esapi/' using current thread context class loader! 2018-01-25 14:38:40,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:362 - SQL query string: SELECT `products`.`client_id`, `clients`.`name` AS client_name, `product_purchases`.`product_title_id`, `product_purchases`.`purchase_date`, `product_purchases`.`buyer_id`, `products`.`serial_number`, `product_purchases`.`purchased_from_id`, `cars`.`vin`, `cars`.`make`, `cars`.`model`, `cars`.`style`, `cars`.`year`, `users`.`username`, `users`.`first_name`, `users`.`last_name`, `users`.`email`, `product_titles`.`status`, `product_titles`.`title_number`, `product_titles`.`origin_state`, `product_titles`.`assignment_date`, `product_titles`.`mileage`, product_titles.notes as title_notes, product_purchases.stock_number as stock_number, product_purchases.sale_date as sale_date, users.first_name as buyer_first_name, `business_partner_partners`.`name` AS vendor_name, `business_partner_partners`.`phone` AS vendor_phone, `business_partner_partners`.`email` AS vendor_email FROM `products` JOIN `product_purchases` ON `products`.`current_product_purchase_id` = `product_purchases`.`id` JOIN `cars` ON `cars`.`id` = `products`.`as_product_id` AND `products`.`as_product_type` = 'Car' JOIN product_statuses ON product_statuses.id = product_purchases.product_status_id AND product_statuses.system_status != "60" LEFT JOIN `users` ON `users`.`id` = `product_purchases`.`buyer_id` LEFT JOIN `product_titles` ON `product_titles`.`id` = `product_purchases`.`product_title_id` LEFT JOIN `business_partner_partners` ON `business_partner_partners`.`id` = `product_purchases`.`purchased_from_id` JOIN `clients` ON `clients`.`id` = `products`.`client_id` AND `clients`.`id` LIKE ? JOIN product_categories ON products.product_category_id = product_categories.id AND product_categories.consigned_inventory=0 where DATE(product_titles.created_at) >= "2017-09-18" and product_titles.status != "1" 2018-01-25 14:38:40,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRJdbcQueryExecuter:569 - Parameter #1 (LoggedInUserAttribute_ClientID of type java.lang.String): 4 2018-01-25 14:38:41,539 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field client_id has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,550 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field client_name has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,550 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field product_title_id has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,550 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field purchase_date has type 91/DATE, class java.sql.Date 2018-01-25 14:38:41,550 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:771 - calendar for field purchase_date is null 2018-01-25 14:38:41,551 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-10-15 (1444867200000) 2018-01-25 14:38:41,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field buyer_id has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,565 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field serial_number has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,565 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field purchased_from_id has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,565 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field vin has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field make has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field model has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field style has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,566 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field year has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field username has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field first_name has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field last_name has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field email has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,567 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field status has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,570 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field title_number has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,571 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field origin_state has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,571 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field assignment_date has type 91/DATE, class java.sql.Date 2018-01-25 14:38:41,571 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:771 - calendar for field assignment_date is null 2018-01-25 14:38:41,571 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field mileage has type 4/INTEGER, class java.lang.Integer 2018-01-25 14:38:41,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field title_notes has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field stock_number has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field sale_date has type 91/DATE, class java.sql.Date 2018-01-25 14:38:41,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:771 - calendar for field sale_date is null 2018-01-25 14:38:41,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,573 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field buyer_first_name has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field vendor_name has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field vendor_phone has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:489 - field vendor_email has type 12/VARCHAR, class java.lang.String 2018-01-25 14:38:41,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:41,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:41,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:41,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:41,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,620 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-09-25 (1506297600000) 2018-01-25 14:38:41,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-10-03 (1506988800000) 2018-01-25 14:38:41,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,658 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-10-13 (1507852800000) 2018-01-25 14:38:41,659 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-10-05 (1507161600000) 2018-01-25 14:38:41,664 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,664 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-10-13 (1507852800000) 2018-01-25 14:38:41,664 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:41,664 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,664 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-10-30 (1509321600000) 2018-01-25 14:38:41,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2017-11-08 (1510099200000) 2018-01-25 14:38:41,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,665 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:41,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-11-15 (1510704000000) 2018-01-25 14:38:41,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-08 (1510099200000) 2018-01-25 14:38:41,666 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-11-13 (1510531200000) 2018-01-25 14:38:41,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-08 (1510099200000) 2018-01-25 14:38:41,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,667 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-08 (1510099200000) 2018-01-25 14:38:41,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-11-10 (1510272000000) 2018-01-25 14:38:41,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-15 (1510704000000) 2018-01-25 14:38:41,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-11-17 (1510876800000) 2018-01-25 14:38:41,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-14 (1510617600000) 2018-01-25 14:38:41,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-08 (1512691200000) 2018-01-25 14:38:41,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-14 (1510617600000) 2018-01-25 14:38:41,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-15 (1510704000000) 2018-01-25 14:38:41,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2017-12-05 (1512432000000) 2018-01-25 14:38:41,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-17 (1510876800000) 2018-01-25 14:38:41,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-17 (1510876800000) 2018-01-25 14:38:41,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,688 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-20 (1511136000000) 2018-01-25 14:38:41,688 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,688 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,688 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:41,689 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,689 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-11-28 (1511827200000) 2018-01-25 14:38:41,689 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:41,689 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:41,690 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-27 (1514332800000) 2018-01-25 14:38:41,690 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-27 (1511740800000) 2018-01-25 14:38:41,690 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,690 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,691 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-27 (1511740800000) 2018-01-25 14:38:41,691 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,691 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,691 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-29 (1511913600000) 2018-01-25 14:38:41,707 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,707 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,707 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-29 (1511913600000) 2018-01-25 14:38:41,707 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,708 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,708 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-28 (1511827200000) 2018-01-25 14:38:41,708 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,708 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-08 (1512691200000) 2018-01-25 14:38:41,709 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-11-29 (1511913600000) 2018-01-25 14:38:41,709 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,709 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,709 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,710 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,710 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-08 (1512691200000) 2018-01-25 14:38:41,710 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,710 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,710 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-15 (1513296000000) 2018-01-25 14:38:41,711 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-01 (1512086400000) 2018-01-25 14:38:41,711 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,711 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-05 (1512432000000) 2018-01-25 14:38:41,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-04 (1512345600000) 2018-01-25 14:38:41,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:41,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-04 (1512345600000) 2018-01-25 14:38:41,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-15 (1513296000000) 2018-01-25 14:38:41,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-04 (1512345600000) 2018-01-25 14:38:41,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2017-12-27 (1514332800000) 2018-01-25 14:38:41,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-15 (1513296000000) 2018-01-25 14:38:41,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-06 (1512518400000) 2018-01-25 14:38:41,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-15 (1513296000000) 2018-01-25 14:38:41,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-05 (1512432000000) 2018-01-25 14:38:41,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-08 (1512691200000) 2018-01-25 14:38:41,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-05 (1512432000000) 2018-01-25 14:38:41,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-08 (1512691200000) 2018-01-25 14:38:41,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2016-12-31 (1483142400000) 2018-01-25 14:38:41,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-02-27 (1424995200000) 2018-01-25 14:38:41,759 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,759 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,759 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-04-28 (1430179200000) 2018-01-25 14:38:41,792 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,792 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,792 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-05-19 (1431993600000) 2018-01-25 14:38:41,793 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,793 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,793 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-07-07 (1436227200000) 2018-01-25 14:38:41,793 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,793 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,794 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-08-16 (1439683200000) 2018-01-25 14:38:41,794 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,794 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,794 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2015-10-15 (1444867200000) 2018-01-25 14:38:41,794 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2016-01-04 (1451865600000) 2018-01-25 14:38:41,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2016-01-22 (1453420800000) 2018-01-25 14:38:41,800 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,840 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,840 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2016-08-12 (1470960000000) 2018-01-25 14:38:41,840 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,840 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,841 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-05 (1512432000000) 2018-01-25 14:38:41,841 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,841 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-15 (1513296000000) 2018-01-25 14:38:41,841 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-06 (1512518400000) 2018-01-25 14:38:41,841 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,841 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-13 (1513123200000) 2018-01-25 14:38:41,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-22 (1513900800000) 2018-01-25 14:38:41,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-11 (1512950400000) 2018-01-25 14:38:41,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-11 (1512950400000) 2018-01-25 14:38:41,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:41,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-11 (1512950400000) 2018-01-25 14:38:41,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:41,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:41,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-13 (1513123200000) 2018-01-25 14:38:41,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-12 (1513036800000) 2018-01-25 14:38:41,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-13 (1513123200000) 2018-01-25 14:38:41,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-13 (1513123200000) 2018-01-25 14:38:41,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-15 (1513296000000) 2018-01-25 14:38:41,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-13 (1513123200000) 2018-01-25 14:38:41,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-13 (1513123200000) 2018-01-25 14:38:41,880 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-14 (1513209600000) 2018-01-25 14:38:41,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-14 (1513209600000) 2018-01-25 14:38:41,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,895 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-22 (1513900800000) 2018-01-25 14:38:41,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-22 (1513900800000) 2018-01-25 14:38:41,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-18 (1513555200000) 2018-01-25 14:38:41,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-19 (1513641600000) 2018-01-25 14:38:41,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-22 (1513900800000) 2018-01-25 14:38:41,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-20 (1513728000000) 2018-01-25 14:38:41,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-27 (1514332800000) 2018-01-25 14:38:41,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-20 (1513728000000) 2018-01-25 14:38:41,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-20 (1513728000000) 2018-01-25 14:38:41,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-20 (1513728000000) 2018-01-25 14:38:41,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,911 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,913 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,913 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,913 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,913 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,913 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,913 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,914 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,914 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,925 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-22 (1513900800000) 2018-01-25 14:38:41,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,928 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-21 (1513814400000) 2018-01-25 14:38:41,928 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,928 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,928 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,928 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,928 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:41,929 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-22 (1513900800000) 2018-01-25 14:38:41,929 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,929 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:41,929 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-27 (1514332800000) 2018-01-25 14:38:41,929 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,929 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,930 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,930 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,930 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,930 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,930 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,941 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:41,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-27 (1514332800000) 2018-01-25 14:38:41,943 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,943 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:41,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,946 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,946 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,946 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,946 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,946 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,946 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,947 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,947 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,947 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:41,947 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,947 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:41,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-26 (1514246400000) 2018-01-25 14:38:41,960 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:41,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:41,961 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-27 (1514332800000) 2018-01-25 14:38:41,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:41,962 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:41,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,974 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,974 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,974 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-28 (1514419200000) 2018-01-25 14:38:41,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-28 (1514419200000) 2018-01-25 14:38:41,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,975 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-28 (1514419200000) 2018-01-25 14:38:41,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-28 (1514419200000) 2018-01-25 14:38:41,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,976 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-28 (1514419200000) 2018-01-25 14:38:41,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,977 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-28 (1514419200000) 2018-01-25 14:38:41,979 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,994 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,995 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,995 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,995 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,995 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,995 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,996 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,996 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2017-12-29 (1514505600000) 2018-01-25 14:38:41,996 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,996 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,996 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,996 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:41,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:41,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:41,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:41,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:41,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:41,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:42,011 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,011 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,011 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:42,011 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,011 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:42,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:42,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-02 (1514851200000) 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:42,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,027 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,027 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,027 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,027 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,027 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,027 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-03 (1514937600000) 2018-01-25 14:38:42,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:42,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:42,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:42,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,043 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-04 (1515024000000) 2018-01-25 14:38:42,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:42,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-05 (1515110400000) 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,047 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,047 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,047 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,047 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,047 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,049 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,049 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,049 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,049 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,049 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,049 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,050 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,050 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,050 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,050 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,050 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,050 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,051 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,051 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-08 (1515369600000) 2018-01-25 14:38:42,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,096 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,097 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,097 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,097 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,097 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,097 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,097 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-09 (1515456000000) 2018-01-25 14:38:42,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,134 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,140 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-10 (1515542400000) 2018-01-25 14:38:42,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,220 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,220 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,220 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,221 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,221 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,221 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,221 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,221 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,221 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,222 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,223 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,223 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,223 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,223 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,223 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,223 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,224 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,224 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,224 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,224 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,224 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,224 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,225 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,225 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,268 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,268 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,268 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,268 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,269 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,298 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,298 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,299 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,299 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,299 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,300 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,300 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,300 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,301 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,301 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,301 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,301 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,301 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,301 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,302 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,304 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-11 (1515628800000) 2018-01-25 14:38:42,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,322 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,322 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,323 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,323 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,323 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,323 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,323 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-12 (1515715200000) 2018-01-25 14:38:42,323 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,327 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,327 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,327 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,327 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,339 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,340 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,341 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,342 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,343 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,344 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,345 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-15 (1515974400000) 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,346 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,372 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,373 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-16 (1516060800000) 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,403 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,404 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-17 (1516147200000) 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,405 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,406 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,407 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,408 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-18 (1516233600000) 2018-01-25 14:38:42,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,436 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,437 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,443 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,444 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,444 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,468 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,468 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,468 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,469 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,470 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,471 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,472 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,473 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,474 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,475 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,484 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,488 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,488 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,488 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-19 (1516320000000) 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,517 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,517 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,517 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,517 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,517 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,517 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,518 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-22 (1516579200000) 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,521 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,522 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,524 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,525 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,549 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,551 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,557 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,557 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,557 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,557 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,557 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,557 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-23 (1516665600000) 2018-01-25 14:38:42,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,573 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,573 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:42,573 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,573 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,582 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:42,582 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,582 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,582 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,582 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,582 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,583 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,583 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,583 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,583 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:42,583 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,583 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,584 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,585 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,586 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,587 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,629 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,630 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,631 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,650 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is 2018-01-24 (1516752000000) 2018-01-25 14:38:42,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field purchase_date is null 2018-01-25 14:38:42,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field assignment_date is null 2018-01-25 14:38:42,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRResultSetDataSource:380 - date field sale_date is null 2018-01-25 14:38:42,651 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:1319 - Fill 1: closing query executer 2018-01-25 14:38:42,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_2102651000_1_1154043646 for net.sf.jasperreports.engine.base.ElementsBlock@7d53e878 2018-01-25 14:38:42,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@7d53e878 for [] 2018-01-25 14:38:42,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@1a7c35ea 2018-01-25 14:38:42,768 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 1 2018-01-25 14:38:42,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:298 - Fill 1: title at 40 2018-01-25 14:38:42,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1416942000} 2018-01-25 14:38:42,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 45 2018-01-25 14:38:42,842 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 SimpleTextLineWrapper:303 - creating element font infos cache of size 2000 2018-01-25 14:38:42,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@321df079 2018-01-25 14:38:42,964 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@705a6d8 2018-01-25 14:38:42,964 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@3f7c8bdb 2018-01-25 14:38:42,964 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@3f7c8bdb for (null, null) 2018-01-25 14:38:42,966 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@321df079 having id 840822905_1516891122957_1120418231 2018-01-25 14:38:42,966 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_2102651000_1_1154043646 2018-01-25 14:38:42,980 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@7d53e878 with id 280951592_2102651000_1_1154043646 2018-01-25 14:38:42,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@705a6d8 having id 117810904_1516891122964_-5948681 2018-01-25 14:38:42,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@3f7c8bdb having id 1065126875_1516891122964_-1914790343 2018-01-25 14:38:42,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:42,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 98 2018-01-25 14:38:42,982 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:42,982 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 102 2018-01-25 14:38:43,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateRectangle@6a6895aa 2018-01-25 14:38:43,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateRectangle@3b35bf5 2018-01-25 14:38:43,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@3dbb5edd 2018-01-25 14:38:43,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@3dbb5edd for (null, null) 2018-01-25 14:38:43,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@50ffc8ef 2018-01-25 14:38:43,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@242e519 2018-01-25 14:38:43,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@242e519 for object net.sf.jasperreports.engine.fill.JRTemplateText@2c5dd72e 2018-01-25 14:38:43,006 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@50ffc8ef for object net.sf.jasperreports.engine.fill.JRTemplateText@2725fba0 2018-01-25 14:38:43,007 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@242e519 for object net.sf.jasperreports.engine.fill.JRTemplateText@39ed9e03 2018-01-25 14:38:43,007 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@242e519 for object net.sf.jasperreports.engine.fill.JRTemplateText@56f6cfb8 2018-01-25 14:38:43,007 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@242e519 for object net.sf.jasperreports.engine.fill.JRTemplateText@26c7c6bb 2018-01-25 14:38:43,007 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@50ffc8ef for object net.sf.jasperreports.engine.fill.JRTemplateText@2e7b2fea 2018-01-25 14:38:43,007 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@242e519 for object net.sf.jasperreports.engine.fill.JRTemplateText@3f8dfc88 2018-01-25 14:38:43,008 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@331c021 2018-01-25 14:38:43,009 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateRectangle@6a6895aa having id 1785238954_1516891123005_585246561 2018-01-25 14:38:43,009 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateRectangle@3b35bf5 having id 62086133_1516891123005_-1018148514 2018-01-25 14:38:43,009 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@3dbb5edd having id 1035689693_1516891123006_-1642774471 2018-01-25 14:38:43,010 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@50ffc8ef having id 1358940399_1516891123006_831150236 2018-01-25 14:38:43,010 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@242e519 having id 37938457_1516891123006_1145136066 2018-01-25 14:38:43,010 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@331c021 having id 53592097_1516891123008_1341085162 2018-01-25 14:38:43,010 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,010 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 165 2018-01-25 14:38:43,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 2018-01-25 14:38:43,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 for (null, null) 2018-01-25 14:38:43,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 for object net.sf.jasperreports.engine.fill.JRTemplateText@6cd2f325 2018-01-25 14:38:43,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 for (null, null) 2018-01-25 14:38:43,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 for object net.sf.jasperreports.engine.fill.JRTemplateText@816dca6 2018-01-25 14:38:43,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 for (null, null) 2018-01-25 14:38:43,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@47f28757 having id 1207076695_1516891123020_-1392166409 2018-01-25 14:38:43,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 189 2018-01-25 14:38:43,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:638 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: pattern timezone property net.sf.jasperreports.sql.date.pattern.timezone is null, resolved to null 2018-01-25 14:38:43,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:638 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: pattern timezone property net.sf.jasperreports.pattern.timezone is null, resolved to null 2018-01-25 14:38:43,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:43,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 2018-01-25 14:38:43,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for (null, null) 2018-01-25 14:38:43,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for object net.sf.jasperreports.engine.fill.JRTemplateText@2b79f698 2018-01-25 14:38:43,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for (null, null) 2018-01-25 14:38:43,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for object net.sf.jasperreports.engine.fill.JRTemplateText@47c5f52a 2018-01-25 14:38:43,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for (null, null) 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@baa896a 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@baa896a for (null, {java.lang.Integer, null,null,null,null}) 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@5ee1887 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@5ee1887 for (null, {java.sql.Date, M/d/yy,null,null,null}) 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for object net.sf.jasperreports.engine.fill.JRTemplateText@7c45cc8d 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for (null, null) 2018-01-25 14:38:43,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for object net.sf.jasperreports.engine.fill.JRTemplateText@3638178 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 for (null, null) 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@7757c3a3 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@7757c3a3 for (null, null) 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@2f7a6673 having id 796550771_1516891123027_-986921003 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@baa896a having id 195725674_1516891123028_1081460473 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@5ee1887 having id 99489927_1516891123029_-1356374092 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@7757c3a3 having id 2002240419_1516891123030_-381159556 2018-01-25 14:38:43,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,044 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 213 2018-01-25 14:38:43,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,045 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 237 2018-01-25 14:38:43,048 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:43,077 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,077 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,077 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,077 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 276 2018-01-25 14:38:43,078 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,078 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 300 2018-01-25 14:38:43,078 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-11 (java.sql.Date/1512950400000) to 12/11/17 2018-01-25 14:38:43,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 348 2018-01-25 14:38:43,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 372 2018-01-25 14:38:43,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:43,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:638 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: pattern timezone property net.sf.jasperreports.sql.date.pattern.timezone is null, resolved to null 2018-01-25 14:38:43,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:638 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: pattern timezone property net.sf.jasperreports.pattern.timezone is null, resolved to null 2018-01-25 14:38:43,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:91 - Found existing instance net.sf.jasperreports.engine.fill.JRTemplateText@5ee1887 for object net.sf.jasperreports.engine.fill.JRTemplateText@7e849235 2018-01-25 14:38:43,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@5ee1887 for (null, {java.sql.Date, M/d/yy,null,null,null}) 2018-01-25 14:38:43,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 402 2018-01-25 14:38:43,110 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,110 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 426 2018-01-25 14:38:43,125 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:43,128 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,128 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,128 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,129 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 456 2018-01-25 14:38:43,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 480 2018-01-25 14:38:43,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:43,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,141 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,142 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,142 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,142 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 528 2018-01-25 14:38:43,142 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,142 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 552 2018-01-25 14:38:43,143 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:43,144 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,144 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,144 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,144 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 591 2018-01-25 14:38:43,144 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,145 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 615 2018-01-25 14:38:43,145 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 639 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:43,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:43,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DeduplicableRegistry:84 - Added object net.sf.jasperreports.engine.fill.JRTemplateText@cf58bd3 2018-01-25 14:38:43,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:470 - created net.sf.jasperreports.engine.fill.JRTemplateText@cf58bd3 for (null, null) 2018-01-25 14:38:43,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualizationContext:245 - Cached template net.sf.jasperreports.engine.fill.JRTemplateText@cf58bd3 having id 217418707_1516891123147_1992466958 2018-01-25 14:38:43,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:43,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1369425828_2_-981920864 for net.sf.jasperreports.engine.base.ElementsBlock@519fc7a4 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@519fc7a4 for [] 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@727188f2 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 2 2018-01-25 14:38:43,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 0 generated 2018-01-25 14:38:43,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:739 - Report fill result available net.sf.jasperreports.web.servlets.AsyncJasperPrintAccessor@3500e0d5 2018-01-25 14:38:43,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:739 - Report fill result available net.sf.jasperreports.web.servlets.AsyncJasperPrintAccessor@3500e0d5 2018-01-25 14:38:43,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:43,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1369425828_2_-981920864 2018-01-25 14:38:43,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@519fc7a4 with id 280951592_1369425828_2_-981920864 2018-01-25 14:38:43,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:43,168 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:43,168 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:43,172 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,172 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:43,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,184 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:43,184 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:43,185 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,185 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,185 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,185 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:43,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:43,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:43,187 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,187 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,205 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,206 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 256 2018-01-25 14:38:43,206 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,206 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:43,207 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:43,207 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,209 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,209 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:43,209 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,212 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,212 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:43,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:43,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,244 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,244 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,244 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 352 2018-01-25 14:38:43,244 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,244 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:43,245 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:43,245 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,246 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,246 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,246 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 406 2018-01-25 14:38:43,246 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,246 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 430 2018-01-25 14:38:43,247 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:43,247 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,248 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 454 2018-01-25 14:38:43,319 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:43,320 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,320 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,321 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,321 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 478 2018-01-25 14:38:43,321 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,321 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 502 2018-01-25 14:38:43,325 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-20 (java.sql.Date/1513728000000) to 12/20/17 2018-01-25 14:38:43,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 526 2018-01-25 14:38:43,326 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-20 (java.sql.Date/1513728000000) to 12/20/17 2018-01-25 14:38:43,327 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,327 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 550 2018-01-25 14:38:43,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 574 2018-01-25 14:38:43,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:43,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:43,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 604 2018-01-25 14:38:43,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 628 2018-01-25 14:38:43,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 652 2018-01-25 14:38:43,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 676 2018-01-25 14:38:43,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:43,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:43,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 706 2018-01-25 14:38:43,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:43,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_490122081_3_1716377998 for net.sf.jasperreports.engine.base.ElementsBlock@1d36ab61 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@1d36ab61 for [] 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@53b55abd 2018-01-25 14:38:43,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 3 2018-01-25 14:38:43,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 1 generated 2018-01-25 14:38:43,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:43,382 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_490122081_3_1716377998 2018-01-25 14:38:43,382 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@1d36ab61 with id 280951592_490122081_3_1716377998 2018-01-25 14:38:43,382 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:43,382 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:43,382 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:43,383 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-27 (java.sql.Date/1514332800000) to 12/27/17 2018-01-25 14:38:43,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 214 2018-01-25 14:38:43,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:43,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 244 2018-01-25 14:38:43,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:43,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 268 2018-01-25 14:38:43,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:43,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 292 2018-01-25 14:38:43,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 316 2018-01-25 14:38:43,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:43,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 340 2018-01-25 14:38:43,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 364 2018-01-25 14:38:43,481 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:43,481 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:43,482 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,483 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 388 2018-01-25 14:38:43,483 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:43,483 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:43,484 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,484 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,484 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,484 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 412 2018-01-25 14:38:43,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 436 2018-01-25 14:38:43,485 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 460 2018-01-25 14:38:43,486 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:43,487 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_624931269_4_1143164546 for net.sf.jasperreports.engine.base.ElementsBlock@253fb1c5 2018-01-25 14:38:43,504 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@253fb1c5 for [] 2018-01-25 14:38:43,504 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@18a2bdc4 2018-01-25 14:38:43,504 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 4 2018-01-25 14:38:43,504 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 2 generated 2018-01-25 14:38:43,504 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:43,505 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_624931269_4_1143164546 2018-01-25 14:38:43,505 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@253fb1c5 with id 280951592_624931269_4_1143164546 2018-01-25 14:38:43,505 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:43,505 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:43,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:43,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:43,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:43,552 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:43,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,553 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:43,554 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,594 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:43,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-11-28 (java.sql.Date/1511827200000) to 11/28/17 2018-01-25 14:38:43,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:43,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 262 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:43,597 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:43,598 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_512325355_5_749111119 for net.sf.jasperreports.engine.base.ElementsBlock@1e8976eb 2018-01-25 14:38:43,598 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@1e8976eb for [] 2018-01-25 14:38:43,598 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@1bb6b98f 2018-01-25 14:38:43,598 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 5 2018-01-25 14:38:43,598 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 3 generated 2018-01-25 14:38:43,598 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:43,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_512325355_5_749111119 2018-01-25 14:38:43,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@1e8976eb with id 280951592_512325355_5_749111119 2018-01-25 14:38:43,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:43,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:43,599 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:43,632 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:43,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:43,633 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:43,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:43,634 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,635 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,659 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,660 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:43,660 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,661 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:43,661 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-20 (java.sql.Date/1511136000000) to 11/20/17 2018-01-25 14:38:43,661 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:43,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 290 2018-01-25 14:38:43,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-04 (java.sql.Date/1512345600000) to 12/4/17 2018-01-25 14:38:43,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-15 (java.sql.Date/1513296000000) to 12/15/17 2018-01-25 14:38:43,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 320 2018-01-25 14:38:43,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 344 2018-01-25 14:38:43,692 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,692 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,692 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,693 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,693 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 368 2018-01-25 14:38:43,693 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,693 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 392 2018-01-25 14:38:43,693 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,694 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,694 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,695 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,695 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 416 2018-01-25 14:38:43,695 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,695 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 440 2018-01-25 14:38:43,695 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,712 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,712 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 464 2018-01-25 14:38:43,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 488 2018-01-25 14:38:43,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 512 2018-01-25 14:38:43,715 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,715 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 536 2018-01-25 14:38:43,715 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,812 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 560 2018-01-25 14:38:43,812 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 584 2018-01-25 14:38:43,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,834 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,834 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,834 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,834 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 608 2018-01-25 14:38:43,835 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,835 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 632 2018-01-25 14:38:43,835 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,836 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,836 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 656 2018-01-25 14:38:43,837 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,837 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,837 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 680 2018-01-25 14:38:43,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 704 2018-01-25 14:38:43,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:43,838 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1578483100_6_-996507198 for net.sf.jasperreports.engine.base.ElementsBlock@5e15bd9c 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@5e15bd9c for [] 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@7c45f970 2018-01-25 14:38:43,839 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 6 2018-01-25 14:38:43,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 4 generated 2018-01-25 14:38:43,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:43,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1578483100_6_-996507198 2018-01-25 14:38:43,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@5e15bd9c with id 280951592_1578483100_6_-996507198 2018-01-25 14:38:43,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:43,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:43,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:43,856 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,856 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,856 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:43,857 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,857 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,858 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,858 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:43,858 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,858 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:43,858 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:43,859 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,859 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:43,876 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:43,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,877 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 280 2018-01-25 14:38:43,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:43,878 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 328 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:43,879 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:43,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_183228619_7_-654986063 for net.sf.jasperreports.engine.base.ElementsBlock@aebd8cb 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@aebd8cb for [] 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@1436f4e1 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 7 2018-01-25 14:38:43,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 5 generated 2018-01-25 14:38:43,900 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:43,900 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_183228619_7_-654986063 2018-01-25 14:38:43,900 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@aebd8cb with id 280951592_183228619_7_-654986063 2018-01-25 14:38:43,900 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:43,900 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:43,901 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:43,902 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:43,902 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:43,902 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,902 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:43,903 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,903 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:43,908 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,908 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:43,909 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,909 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:43,909 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:43,910 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 256 2018-01-25 14:38:43,910 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:43,910 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:43,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:43,963 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:43,968 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,969 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 319 2018-01-25 14:38:43,969 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:43,969 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:43,970 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:43,970 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 343 2018-01-25 14:38:43,970 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:44,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 367 2018-01-25 14:38:44,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 391 2018-01-25 14:38:44,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 415 2018-01-25 14:38:44,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-08 (java.sql.Date/1510099200000) to 11/8/17 2018-01-25 14:38:44,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-11-10 (java.sql.Date/1510272000000) to 11/10/17 2018-01-25 14:38:44,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 463 2018-01-25 14:38:44,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-05 (java.sql.Date/1512432000000) to 12/5/17 2018-01-25 14:38:44,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-08 (java.sql.Date/1512691200000) to 12/8/17 2018-01-25 14:38:44,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 493 2018-01-25 14:38:44,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:44,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:44,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 523 2018-01-25 14:38:44,046 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:44,047 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,068 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,068 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 562 2018-01-25 14:38:44,104 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:44,104 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:44,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 586 2018-01-25 14:38:44,109 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 610 2018-01-25 14:38:44,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:44,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 634 2018-01-25 14:38:44,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:44,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:44,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 658 2018-01-25 14:38:44,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:44,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 682 2018-01-25 14:38:44,189 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:44,189 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,189 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 706 2018-01-25 14:38:44,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:44,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:44,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1600513188_8_-770738351 for net.sf.jasperreports.engine.base.ElementsBlock@5f65e4a4 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@5f65e4a4 for [] 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@499407d0 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 8 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 6 generated 2018-01-25 14:38:44,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:44,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1600513188_8_-770738351 2018-01-25 14:38:44,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@5f65e4a4 with id 280951592_1600513188_8_-770738351 2018-01-25 14:38:44,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:44,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:44,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:44,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:44,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,236 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,236 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,236 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:44,237 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,237 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,237 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:44,238 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:44,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 280 2018-01-25 14:38:44,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:44,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 328 2018-01-25 14:38:44,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:44,300 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:44,300 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,312 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,312 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:44,312 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:44,313 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,313 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,313 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 400 2018-01-25 14:38:44,313 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,314 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,314 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,314 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,314 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 424 2018-01-25 14:38:44,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 448 2018-01-25 14:38:44,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-10-05 (java.sql.Date/1507161600000) to 10/5/17 2018-01-25 14:38:44,315 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-10-13 (java.sql.Date/1507852800000) to 10/13/17 2018-01-25 14:38:44,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 515 2018-01-25 14:38:44,332 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-15 (java.sql.Date/1510704000000) to 11/15/17 2018-01-25 14:38:44,332 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-11-17 (java.sql.Date/1510876800000) to 11/17/17 2018-01-25 14:38:44,332 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 545 2018-01-25 14:38:44,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-27 (java.sql.Date/1511740800000) to 11/27/17 2018-01-25 14:38:44,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:44,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 575 2018-01-25 14:38:44,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-29 (java.sql.Date/1511913600000) to 11/29/17 2018-01-25 14:38:44,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:44,335 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,335 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 605 2018-01-25 14:38:44,335 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-05 (java.sql.Date/1512432000000) to 12/5/17 2018-01-25 14:38:44,335 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-08 (java.sql.Date/1512691200000) to 12/8/17 2018-01-25 14:38:44,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 629 2018-01-25 14:38:44,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-06 (java.sql.Date/1512518400000) to 12/6/17 2018-01-25 14:38:44,348 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-15 (java.sql.Date/1513296000000) to 12/15/17 2018-01-25 14:38:44,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 653 2018-01-25 14:38:44,349 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-13 (java.sql.Date/1513123200000) to 12/13/17 2018-01-25 14:38:44,350 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-22 (java.sql.Date/1513900800000) to 12/22/17 2018-01-25 14:38:44,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 692 2018-01-25 14:38:44,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:44,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:44,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 716 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1771953751_9_664476398 for net.sf.jasperreports.engine.base.ElementsBlock@699dde57 2018-01-25 14:38:44,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@699dde57 for [] 2018-01-25 14:38:44,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@6ff92d78 2018-01-25 14:38:44,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 9 2018-01-25 14:38:44,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 7 generated 2018-01-25 14:38:44,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:44,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1771953751_9_664476398 2018-01-25 14:38:44,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@699dde57 with id 280951592_1771953751_9_664476398 2018-01-25 14:38:44,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:44,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:44,368 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:44,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:44,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:44,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 214 2018-01-25 14:38:44,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 238 2018-01-25 14:38:44,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:44,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 262 2018-01-25 14:38:44,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:44,438 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 286 2018-01-25 14:38:44,439 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:44,444 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,444 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 316 2018-01-25 14:38:44,444 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,445 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,446 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 340 2018-01-25 14:38:44,446 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,446 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,446 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 364 2018-01-25 14:38:44,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 388 2018-01-25 14:38:44,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-17 (java.sql.Date/1510876800000) to 11/17/17 2018-01-25 14:38:44,447 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:44,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 436 2018-01-25 14:38:44,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,545 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 460 2018-01-25 14:38:44,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 484 2018-01-25 14:38:44,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:44,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 508 2018-01-25 14:38:44,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:44,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 532 2018-01-25 14:38:44,575 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:44,575 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,576 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,576 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 556 2018-01-25 14:38:44,576 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,576 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 580 2018-01-25 14:38:44,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 604 2018-01-25 14:38:44,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 628 2018-01-25 14:38:44,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-29 (java.sql.Date/1511913600000) to 11/29/17 2018-01-25 14:38:44,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:44,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 652 2018-01-25 14:38:44,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-13 (java.sql.Date/1513123200000) to 12/13/17 2018-01-25 14:38:44,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 691 2018-01-25 14:38:44,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 715 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:44,613 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1712647396_10_-1543041555 for net.sf.jasperreports.engine.base.ElementsBlock@6614ece4 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@6614ece4 for [] 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@3b93a628 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 10 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 8 generated 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:44,614 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1712647396_10_-1543041555 2018-01-25 14:38:44,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@6614ece4 with id 280951592_1712647396_10_-1543041555 2018-01-25 14:38:44,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:44,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:44,615 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:44,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:44,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:44,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:44,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,686 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 256 2018-01-25 14:38:44,687 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,700 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:44,700 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-19 (java.sql.Date/1513641600000) to 12/19/17 2018-01-25 14:38:44,700 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-22 (java.sql.Date/1513900800000) to 12/22/17 2018-01-25 14:38:44,701 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,701 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 319 2018-01-25 14:38:44,701 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,701 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,702 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,702 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 343 2018-01-25 14:38:44,702 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,702 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,703 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,703 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 367 2018-01-25 14:38:44,703 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,703 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 391 2018-01-25 14:38:44,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 415 2018-01-25 14:38:44,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 439 2018-01-25 14:38:44,718 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,719 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,719 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 463 2018-01-25 14:38:44,719 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,736 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,736 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 487 2018-01-25 14:38:44,736 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,737 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,777 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 511 2018-01-25 14:38:44,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 535 2018-01-25 14:38:44,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 559 2018-01-25 14:38:44,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 583 2018-01-25 14:38:44,784 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,784 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 607 2018-01-25 14:38:44,784 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,784 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,784 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,785 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,785 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 631 2018-01-25 14:38:44,785 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,785 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 655 2018-01-25 14:38:44,785 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-27 (java.sql.Date/1514332800000) to 12/27/17 2018-01-25 14:38:44,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:44,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 685 2018-01-25 14:38:44,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:44,830 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 715 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:44,831 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_777350068_11_113698038 for net.sf.jasperreports.engine.base.ElementsBlock@2e556bb4 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@2e556bb4 for [] 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@2d4e83ce 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 11 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 9 generated 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_777350068_11_113698038 2018-01-25 14:38:44,832 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@2e556bb4 with id 280951592_777350068_11_113698038 2018-01-25 14:38:44,833 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:44,833 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:44,833 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:44,833 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:44,834 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,834 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,881 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:44,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:44,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,882 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:44,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,883 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,903 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,903 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:44,904 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:44,904 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,904 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,904 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:44,905 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:44,905 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,905 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,905 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:44,906 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:44,906 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,906 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,906 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:44,906 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:44,907 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,907 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:44,907 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:44,919 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,919 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 400 2018-01-25 14:38:44,920 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,920 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,920 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 424 2018-01-25 14:38:44,920 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,921 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,921 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 448 2018-01-25 14:38:44,921 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:44,921 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,922 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:44,922 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:44,922 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 472 2018-01-25 14:38:44,922 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:44,922 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 496 2018-01-25 14:38:44,922 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-15 (java.sql.Date/1510704000000) to 11/15/17 2018-01-25 14:38:44,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 554 2018-01-25 14:38:44,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:44,926 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:44,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 578 2018-01-25 14:38:44,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:44,927 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:44,930 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 602 2018-01-25 14:38:44,931 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:44,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 626 2018-01-25 14:38:44,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:44,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 650 2018-01-25 14:38:44,987 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:44,987 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,987 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 674 2018-01-25 14:38:44,987 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:44,992 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:44,992 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 698 2018-01-25 14:38:45,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,012 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_176887444_12_-1666565728 for net.sf.jasperreports.engine.base.ElementsBlock@a8b1694 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@a8b1694 for [] 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@6b2f7d44 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 12 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 10 generated 2018-01-25 14:38:45,013 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_176887444_12_-1666565728 2018-01-25 14:38:45,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@a8b1694 with id 280951592_176887444_12_-1666565728 2018-01-25 14:38:45,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,014 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,015 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-22 (java.sql.Date/1513900800000) to 12/22/17 2018-01-25 14:38:45,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,028 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 214 2018-01-25 14:38:45,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-27 (java.sql.Date/1514332800000) to 12/27/17 2018-01-25 14:38:45,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:45,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,029 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 244 2018-01-25 14:38:45,030 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 274 2018-01-25 14:38:45,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,031 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,034 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,034 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 298 2018-01-25 14:38:45,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,035 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 322 2018-01-25 14:38:45,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 346 2018-01-25 14:38:45,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,036 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 370 2018-01-25 14:38:45,084 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,084 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,085 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 394 2018-01-25 14:38:45,085 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,085 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,085 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 418 2018-01-25 14:38:45,085 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 442 2018-01-25 14:38:45,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 466 2018-01-25 14:38:45,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 490 2018-01-25 14:38:45,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 514 2018-01-25 14:38:45,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 538 2018-01-25 14:38:45,098 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 562 2018-01-25 14:38:45,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,099 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 586 2018-01-25 14:38:45,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 610 2018-01-25 14:38:45,100 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 634 2018-01-25 14:38:45,101 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 658 2018-01-25 14:38:45,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 682 2018-01-25 14:38:45,102 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 706 2018-01-25 14:38:45,103 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1772744322_13_1893368510 for net.sf.jasperreports.engine.base.ElementsBlock@69a9ee82 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@69a9ee82 for [] 2018-01-25 14:38:45,114 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@3604e10d 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 13 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 11 generated 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1772744322_13_1893368510 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@69a9ee82 with id 280951592_1772744322_13_1893368510 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,115 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,116 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,117 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 238 2018-01-25 14:38:45,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 262 2018-01-25 14:38:45,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 286 2018-01-25 14:38:45,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 310 2018-01-25 14:38:45,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,130 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 334 2018-01-25 14:38:45,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 358 2018-01-25 14:38:45,131 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-27 (java.sql.Date/1514332800000) to 12/27/17 2018-01-25 14:38:45,132 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,132 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 425 2018-01-25 14:38:45,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-27 (java.sql.Date/1511740800000) to 11/27/17 2018-01-25 14:38:45,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:45,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 449 2018-01-25 14:38:45,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:45,133 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,134 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,134 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 473 2018-01-25 14:38:45,134 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,134 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,146 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 497 2018-01-25 14:38:45,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 521 2018-01-25 14:38:45,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-28 (java.sql.Date/1514419200000) to 12/28/17 2018-01-25 14:38:45,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,147 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 545 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,148 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_265441475_14_2116499858 for net.sf.jasperreports.engine.base.ElementsBlock@fd250c3 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@fd250c3 for [] 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@6ad3c139 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 14 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 12 generated 2018-01-25 14:38:45,149 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_265441475_14_2116499858 2018-01-25 14:38:45,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@fd250c3 with id 280951592_265441475_14_2116499858 2018-01-25 14:38:45,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,150 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,162 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,162 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,163 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,163 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,163 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,163 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,163 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 256 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:45,164 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,165 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 319 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,166 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_370250633_15_-1745068972 for net.sf.jasperreports.engine.base.ElementsBlock@16119389 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@16119389 for [] 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@27c5b76a 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 15 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 13 generated 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_370250633_15_-1745068972 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@16119389 with id 280951592_370250633_15_-1745068972 2018-01-25 14:38:45,167 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,178 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,179 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,179 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,179 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,179 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,180 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,181 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,181 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-09-25 (java.sql.Date/1506297600000) to 9/25/17 2018-01-25 14:38:45,181 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,181 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 262 2018-01-25 14:38:45,181 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,182 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,182 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,182 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 286 2018-01-25 14:38:45,182 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,182 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,182 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 310 2018-01-25 14:38:45,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 334 2018-01-25 14:38:45,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:45,183 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 358 2018-01-25 14:38:45,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:45,186 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,212 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,212 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 382 2018-01-25 14:38:45,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:45,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 406 2018-01-25 14:38:45,213 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,214 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,214 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 430 2018-01-25 14:38:45,214 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,214 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,214 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 454 2018-01-25 14:38:45,214 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,216 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,216 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 478 2018-01-25 14:38:45,216 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,216 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 502 2018-01-25 14:38:45,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 526 2018-01-25 14:38:45,217 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:45,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 550 2018-01-25 14:38:45,218 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,219 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 574 2018-01-25 14:38:45,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,260 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 598 2018-01-25 14:38:45,261 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,261 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,262 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 622 2018-01-25 14:38:45,262 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,262 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,262 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 646 2018-01-25 14:38:45,262 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,263 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,263 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 670 2018-01-25 14:38:45,263 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,263 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,263 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 694 2018-01-25 14:38:45,264 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,264 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,264 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 718 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,265 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1293685037_16_-2095666072 for net.sf.jasperreports.engine.base.ElementsBlock@4d1c112d 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@4d1c112d for [] 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@73ea6fae 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 16 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 14 generated 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,266 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1293685037_16_-2095666072 2018-01-25 14:38:45,267 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@4d1c112d with id 280951592_1293685037_16_-2095666072 2018-01-25 14:38:45,267 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,267 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,267 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,290 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,290 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,291 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,291 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-28 (java.sql.Date/1511827200000) to 11/28/17 2018-01-25 14:38:45,291 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-08 (java.sql.Date/1512691200000) to 12/8/17 2018-01-25 14:38:45,291 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,291 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,291 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-05 (java.sql.Date/1512432000000) to 12/5/17 2018-01-25 14:38:45,292 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-15 (java.sql.Date/1513296000000) to 12/15/17 2018-01-25 14:38:45,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,303 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,305 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-28 (java.sql.Date/1514419200000) to 12/28/17 2018-01-25 14:38:45,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:45,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-28 (java.sql.Date/1514419200000) to 12/28/17 2018-01-25 14:38:45,306 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:45,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:45,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,307 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:45,308 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,308 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:45,324 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,328 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,328 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,328 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,328 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,328 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 376 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 400 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 424 2018-01-25 14:38:45,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 448 2018-01-25 14:38:45,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 472 2018-01-25 14:38:45,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 496 2018-01-25 14:38:45,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 520 2018-01-25 14:38:45,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,352 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 544 2018-01-25 14:38:45,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:45,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 568 2018-01-25 14:38:45,353 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 592 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 616 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,354 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 640 2018-01-25 14:38:45,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,355 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 664 2018-01-25 14:38:45,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,369 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 688 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 712 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,370 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_948901670_17_-1683543957 for net.sf.jasperreports.engine.base.ElementsBlock@388f1726 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@388f1726 for [] 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@9ab3b34 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 17 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 15 generated 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,371 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_948901670_17_-1683543957 2018-01-25 14:38:45,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@388f1726 with id 280951592_948901670_17_-1683543957 2018-01-25 14:38:45,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,377 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:45,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,393 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:45,393 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,394 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,395 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,395 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 382 2018-01-25 14:38:45,395 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,395 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 406 2018-01-25 14:38:45,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 430 2018-01-25 14:38:45,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,396 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 454 2018-01-25 14:38:45,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 478 2018-01-25 14:38:45,397 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 502 2018-01-25 14:38:45,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,398 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 526 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 550 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,399 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,409 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 574 2018-01-25 14:38:45,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,410 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 598 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 622 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,411 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 646 2018-01-25 14:38:45,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 670 2018-01-25 14:38:45,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,412 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 694 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 718 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,413 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1982520570_18_-167198269 for net.sf.jasperreports.engine.base.ElementsBlock@762adcfa 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@762adcfa for [] 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@3aabcbf 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 18 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 16 generated 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1982520570_18_-167198269 2018-01-25 14:38:45,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@762adcfa with id 280951592_1982520570_18_-167198269 2018-01-25 14:38:45,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,416 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,416 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,416 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,416 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,416 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,416 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,417 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,417 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,417 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-10-30 (java.sql.Date/1509321600000) to 10/30/17 2018-01-25 14:38:45,417 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,418 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 308 2018-01-25 14:38:45,418 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-08 (java.sql.Date/1510099200000) to 11/8/17 2018-01-25 14:38:45,418 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:45,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 375 2018-01-25 14:38:45,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 405 2018-01-25 14:38:45,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 435 2018-01-25 14:38:45,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,440 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 474 2018-01-25 14:38:45,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,441 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 498 2018-01-25 14:38:45,442 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:45,456 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,456 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,456 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 522 2018-01-25 14:38:45,456 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:45,456 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 546 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,457 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 570 2018-01-25 14:38:45,458 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,458 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 594 2018-01-25 14:38:45,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:45,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 624 2018-01-25 14:38:45,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:45,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 654 2018-01-25 14:38:45,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 678 2018-01-25 14:38:45,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:45,492 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 702 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,493 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_207715803_19_1764865591 for net.sf.jasperreports.engine.base.ElementsBlock@c617ddb 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@c617ddb for [] 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@3cf05dfa 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 19 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 17 generated 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_207715803_19_1764865591 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@c617ddb with id 280951592_207715803_19_1764865591 2018-01-25 14:38:45,494 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,495 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,495 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,495 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,496 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,496 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,496 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,496 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,497 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,497 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,497 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,497 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,497 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,498 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,498 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,498 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,498 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:45,498 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,511 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,511 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:45,511 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:45,512 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,513 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,514 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,514 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,514 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 304 2018-01-25 14:38:45,514 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,515 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:45,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-22 (java.sql.Date/1513900800000) to 12/22/17 2018-01-25 14:38:45,523 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,527 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,527 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,527 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 352 2018-01-25 14:38:45,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:45,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-11 (java.sql.Date/1512950400000) to 12/11/17 2018-01-25 14:38:45,528 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 400 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,529 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_385659514_20_-796295516 for net.sf.jasperreports.engine.base.ElementsBlock@16fcb27a 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@16fcb27a for [] 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@66840c97 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 20 2018-01-25 14:38:45,530 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 18 generated 2018-01-25 14:38:45,531 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_385659514_20_-796295516 2018-01-25 14:38:45,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@16fcb27a with id 280951592_385659514_20_-796295516 2018-01-25 14:38:45,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,542 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,543 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,546 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,547 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,555 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-28 (java.sql.Date/1514419200000) to 12/28/17 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:45,556 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:45,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 286 2018-01-25 14:38:45,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,562 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 310 2018-01-25 14:38:45,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,563 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 334 2018-01-25 14:38:45,576 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 358 2018-01-25 14:38:45,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-13 (java.sql.Date/1513123200000) to 12/13/17 2018-01-25 14:38:45,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 382 2018-01-25 14:38:45,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:45,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 406 2018-01-25 14:38:45,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-09 (java.sql.Date/1515456000000) to 1/9/18 2018-01-25 14:38:45,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 430 2018-01-25 14:38:45,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 454 2018-01-25 14:38:45,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 478 2018-01-25 14:38:45,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 502 2018-01-25 14:38:45,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 526 2018-01-25 14:38:45,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 550 2018-01-25 14:38:45,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 574 2018-01-25 14:38:45,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 598 2018-01-25 14:38:45,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,592 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,592 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 622 2018-01-25 14:38:45,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 646 2018-01-25 14:38:45,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 670 2018-01-25 14:38:45,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-22 (java.sql.Date/1513900800000) to 12/22/17 2018-01-25 14:38:45,610 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:45,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 694 2018-01-25 14:38:45,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 718 2018-01-25 14:38:45,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_203294200_21_-971013934 for net.sf.jasperreports.engine.base.ElementsBlock@c1e05f8 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@c1e05f8 for [] 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@59a0f946 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 21 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 19 generated 2018-01-25 14:38:45,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_203294200_21_-971013934 2018-01-25 14:38:45,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@c1e05f8 with id 280951592_203294200_21_-971013934 2018-01-25 14:38:45,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,636 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:45,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:45,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 262 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 286 2018-01-25 14:38:45,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:45,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 310 2018-01-25 14:38:45,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 334 2018-01-25 14:38:45,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,644 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,644 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 358 2018-01-25 14:38:45,644 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,671 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 382 2018-01-25 14:38:45,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 406 2018-01-25 14:38:45,672 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 430 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 454 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1896429341_22_714650560 for net.sf.jasperreports.engine.base.ElementsBlock@7109371d 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@7109371d for [] 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@393b9170 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 22 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 20 generated 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1896429341_22_714650560 2018-01-25 14:38:45,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@7109371d with id 280951592_1896429341_22_714650560 2018-01-25 14:38:45,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,677 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,713 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,714 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,715 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,715 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,716 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:45,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,717 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:45,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:45,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,725 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,725 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,725 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 304 2018-01-25 14:38:45,725 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,762 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:45,762 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-04 (java.sql.Date/1512345600000) to 12/4/17 2018-01-25 14:38:45,762 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-15 (java.sql.Date/1513296000000) to 12/15/17 2018-01-25 14:38:45,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 395 2018-01-25 14:38:45,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:45,765 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:45,766 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,766 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,766 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,766 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 425 2018-01-25 14:38:45,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 449 2018-01-25 14:38:45,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-17 (java.sql.Date/1510876800000) to 11/17/17 2018-01-25 14:38:45,767 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:45,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 535 2018-01-25 14:38:45,769 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 559 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-08 (java.sql.Date/1510099200000) to 11/8/17 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-11-13 (java.sql.Date/1510531200000) to 11/13/17 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 589 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-13 (java.sql.Date/1513123200000) to 12/13/17 2018-01-25 14:38:45,770 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-15 (java.sql.Date/1513296000000) to 12/15/17 2018-01-25 14:38:45,771 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,771 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 613 2018-01-25 14:38:45,771 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,771 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-22 (java.sql.Date/1513900800000) to 12/22/17 2018-01-25 14:38:45,771 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,771 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 637 2018-01-25 14:38:45,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 661 2018-01-25 14:38:45,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:45,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,772 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 685 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 709 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,773 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,774 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1513997850_23_-1710558588 for net.sf.jasperreports.engine.base.ElementsBlock@5a3dc61a 2018-01-25 14:38:45,774 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@5a3dc61a for [] 2018-01-25 14:38:45,774 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@51b91889 2018-01-25 14:38:45,810 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 23 2018-01-25 14:38:45,811 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 21 generated 2018-01-25 14:38:45,811 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,811 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1513997850_23_-1710558588 2018-01-25 14:38:45,811 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@5a3dc61a with id 280951592_1513997850_23_-1710558588 2018-01-25 14:38:45,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,813 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,814 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,815 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 232 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,816 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:45,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 280 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_330592945_24_191442946 for net.sf.jasperreports.engine.base.ElementsBlock@13b472b1 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@13b472b1 for [] 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@1ad92fd2 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 24 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 22 generated 2018-01-25 14:38:45,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_330592945_24_191442946 2018-01-25 14:38:45,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@13b472b1 with id 280951592_330592945_24_191442946 2018-01-25 14:38:45,852 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,852 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,852 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,855 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,855 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,855 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,855 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,855 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-02-27 (java.sql.Date/1424995200000) to 2/27/15 2018-01-25 14:38:45,857 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,857 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,857 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-04-28 (java.sql.Date/1430179200000) to 4/28/15 2018-01-25 14:38:45,859 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,859 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,859 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-05-19 (java.sql.Date/1431993600000) to 5/19/15 2018-01-25 14:38:45,859 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:45,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-07-07 (java.sql.Date/1436227200000) to 7/7/15 2018-01-25 14:38:45,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:45,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-08-16 (java.sql.Date/1439683200000) to 8/16/15 2018-01-25 14:38:45,860 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:45,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-10-15 (java.sql.Date/1444867200000) to 10/15/15 2018-01-25 14:38:45,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:45,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2015-10-15 (java.sql.Date/1444867200000) to 10/15/15 2018-01-25 14:38:45,861 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:45,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2016-01-04 (java.sql.Date/1451865600000) to 1/4/16 2018-01-25 14:38:45,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:45,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2016-01-22 (java.sql.Date/1453420800000) to 1/22/16 2018-01-25 14:38:45,862 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 400 2018-01-25 14:38:45,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2016-12-31 (java.sql.Date/1483142400000) to 12/31/16 2018-01-25 14:38:45,863 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,891 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 424 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1250105486_25_450357408 for net.sf.jasperreports.engine.base.ElementsBlock@4a83188e 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@4a83188e for [] 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@7eed4470 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 25 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 23 generated 2018-01-25 14:38:45,893 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1250105486_25_450357408 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@4a83188e with id 280951592_1250105486_25_450357408 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,894 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,896 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-11-15 (java.sql.Date/1510704000000) to 11/15/17 2018-01-25 14:38:45,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:45,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,897 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-18 (java.sql.Date/1513555200000) to 12/18/17 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,898 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 256 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,899 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_131472171_26_-1064192302 for net.sf.jasperreports.engine.base.ElementsBlock@7d61b2b 2018-01-25 14:38:45,920 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@7d61b2b for [] 2018-01-25 14:38:45,920 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@29eebbf2 2018-01-25 14:38:45,948 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 26 2018-01-25 14:38:45,948 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 24 generated 2018-01-25 14:38:45,948 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,949 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_131472171_26_-1064192302 2018-01-25 14:38:45,949 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@7d61b2b with id 280951592_131472171_26_-1064192302 2018-01-25 14:38:45,949 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,949 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,949 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,950 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,950 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,950 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,950 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,950 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-14 (java.sql.Date/1510617600000) to 11/14/17 2018-01-25 14:38:45,951 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:45,951 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,951 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,951 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:45,951 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,951 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 223 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:45,952 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_829984090_27_-982623015 for net.sf.jasperreports.engine.base.ElementsBlock@31788d5a 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@31788d5a for [] 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@17bda397 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 27 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 25 generated 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_829984090_27_-982623015 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@31788d5a with id 280951592_829984090_27_-982623015 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:45,953 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:45,954 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:45,954 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:45,954 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:45,954 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,954 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:45,955 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,955 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,955 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:45,955 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,955 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,955 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 238 2018-01-25 14:38:45,956 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,956 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,956 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 262 2018-01-25 14:38:45,956 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 286 2018-01-25 14:38:45,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,981 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 310 2018-01-25 14:38:45,982 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,982 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 334 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 358 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-14 (java.sql.Date/1510617600000) to 11/14/17 2018-01-25 14:38:45,983 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-08 (java.sql.Date/1512691200000) to 12/8/17 2018-01-25 14:38:45,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 406 2018-01-25 14:38:45,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,984 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 430 2018-01-25 14:38:45,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:45,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:45,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:45,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 454 2018-01-25 14:38:45,985 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:45,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 478 2018-01-25 14:38:45,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 502 2018-01-25 14:38:45,986 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 526 2018-01-25 14:38:45,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,997 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 550 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 574 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,998 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:45,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 598 2018-01-25 14:38:45,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:45,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:45,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 622 2018-01-25 14:38:46,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:46,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 646 2018-01-25 14:38:46,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,004 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 670 2018-01-25 14:38:46,005 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 694 2018-01-25 14:38:46,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 718 2018-01-25 14:38:46,025 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,025 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,025 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,025 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,025 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,037 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_2142561034_28_376217816 for net.sf.jasperreports.engine.base.ElementsBlock@7fb4e30a 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@7fb4e30a for [] 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@49bfa0e2 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 28 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 26 generated 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_2142561034_28_376217816 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@7fb4e30a with id 280951592_2142561034_28_376217816 2018-01-25 14:38:46,038 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,039 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,061 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,070 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,073 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,073 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,073 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,073 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:46,073 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,074 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,074 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:46,074 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,076 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,077 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:46,077 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:46,086 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,087 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 328 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,088 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_389625511_29_-1390205128 for net.sf.jasperreports.engine.base.ElementsBlock@173936a7 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@173936a7 for [] 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@2e314597 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 29 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 27 generated 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_389625511_29_-1390205128 2018-01-25 14:38:46,089 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@173936a7 with id 280951592_389625511_29_-1390205128 2018-01-25 14:38:46,090 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,090 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,090 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,091 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,091 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:46,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-20 (java.sql.Date/1513728000000) to 12/20/17 2018-01-25 14:38:46,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,092 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 232 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-11 (java.sql.Date/1512950400000) to 12/11/17 2018-01-25 14:38:46,093 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,094 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,104 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,104 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 295 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,105 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1492760460_30_891592535 for net.sf.jasperreports.engine.base.ElementsBlock@58f9b78c 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@58f9b78c for [] 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@6497cb5 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 30 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 28 generated 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,106 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1492760460_30_891592535 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@58f9b78c with id 280951592_1492760460_30_891592535 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:46,107 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,108 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:46,109 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,109 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,109 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,109 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:46,110 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,110 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:46,110 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:46,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,118 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:46,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:46,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:46,119 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:46,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:46,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:46,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:46,120 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-22 (java.sql.Date/1516579200000) to 1/22/18 2018-01-25 14:38:46,126 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,134 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 352 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,135 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_505592100_31_-1780538343 for net.sf.jasperreports.engine.base.ElementsBlock@1e22b924 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@1e22b924 for [] 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@1bb2568d 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 31 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 29 generated 2018-01-25 14:38:46,136 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,137 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_505592100_31_-1780538343 2018-01-25 14:38:46,137 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@1e22b924 with id 280951592_505592100_31_-1780538343 2018-01-25 14:38:46,137 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,137 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,137 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,139 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,139 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:46,139 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,139 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,139 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,139 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:46,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2016-08-12 (java.sql.Date/1470960000000) to 8/12/16 2018-01-25 14:38:46,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,151 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 232 2018-01-25 14:38:46,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:46,152 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:46,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,153 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 280 2018-01-25 14:38:46,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:46,154 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-20 (java.sql.Date/1513728000000) to 12/20/17 2018-01-25 14:38:46,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-27 (java.sql.Date/1514332800000) to 12/27/17 2018-01-25 14:38:46,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 343 2018-01-25 14:38:46,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,155 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:46,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 373 2018-01-25 14:38:46,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,156 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 403 2018-01-25 14:38:46,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,157 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 427 2018-01-25 14:38:46,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:46,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,158 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 451 2018-01-25 14:38:46,159 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:46,187 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 475 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 499 2018-01-25 14:38:46,188 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:46,189 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 523 2018-01-25 14:38:46,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-15 (java.sql.Date/1515974400000) to 1/15/18 2018-01-25 14:38:46,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,190 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 547 2018-01-25 14:38:46,191 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:46,191 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,191 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,191 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 571 2018-01-25 14:38:46,191 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:46,191 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 595 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 619 2018-01-25 14:38:46,192 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 643 2018-01-25 14:38:46,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 667 2018-01-25 14:38:46,193 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 691 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 715 2018-01-25 14:38:46,194 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1246239067_32_-453104300 for net.sf.jasperreports.engine.base.ElementsBlock@4a48195b 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@4a48195b for [] 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@24650e20 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 32 2018-01-25 14:38:46,195 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 30 generated 2018-01-25 14:38:46,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1246239067_32_-453104300 2018-01-25 14:38:46,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@4a48195b with id 280951592_1246239067_32_-453104300 2018-01-25 14:38:46,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,196 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:46,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,197 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 214 2018-01-25 14:38:46,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 238 2018-01-25 14:38:46,198 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,199 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 262 2018-01-25 14:38:46,228 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,228 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 286 2018-01-25 14:38:46,228 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-08 (java.sql.Date/1515369600000) to 1/8/18 2018-01-25 14:38:46,228 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,228 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 310 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 334 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,229 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 358 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,230 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1566880784_33_2108013530 for net.sf.jasperreports.engine.base.ElementsBlock@5d64b410 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@5d64b410 for [] 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@5fa2b3a7 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 33 2018-01-25 14:38:46,231 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 31 generated 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1566880784_33_2108013530 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@5d64b410 with id 280951592_1566880784_33_2108013530 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,232 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,233 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:46,233 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,233 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,233 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-16 (java.sql.Date/1516060800000) to 1/16/18 2018-01-25 14:38:46,233 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,233 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 208 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,234 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,235 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 280 2018-01-25 14:38:46,238 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,238 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:46,238 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:46,238 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:46,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:46,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,239 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,240 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 400 2018-01-25 14:38:46,240 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,276 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,277 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,277 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,277 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 424 2018-01-25 14:38:46,277 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,277 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 448 2018-01-25 14:38:46,277 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 472 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 496 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-28 (java.sql.Date/1514419200000) to 12/28/17 2018-01-25 14:38:46,278 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,279 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,279 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 554 2018-01-25 14:38:46,279 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-28 (java.sql.Date/1514419200000) to 12/28/17 2018-01-25 14:38:46,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,280 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 612 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,281 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1165512259_34_2100207390 for net.sf.jasperreports.engine.base.ElementsBlock@45784e43 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@45784e43 for [] 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@48f6b147 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 34 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 32 generated 2018-01-25 14:38:46,282 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1165512259_34_2100207390 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@45784e43 with id 280951592_1165512259_34_2100207390 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,283 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:46,284 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,284 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,284 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,284 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,284 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 214 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 244 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,285 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,286 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,286 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 274 2018-01-25 14:38:46,286 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,286 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,286 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 298 2018-01-25 14:38:46,286 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 322 2018-01-25 14:38:46,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 346 2018-01-25 14:38:46,287 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 370 2018-01-25 14:38:46,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,288 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 394 2018-01-25 14:38:46,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,329 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 418 2018-01-25 14:38:46,330 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 442 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 466 2018-01-25 14:38:46,331 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:46,332 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 505 2018-01-25 14:38:46,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,333 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 529 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-10 (java.sql.Date/1515542400000) to 1/10/18 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 553 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,334 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,335 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 577 2018-01-25 14:38:46,335 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,336 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 601 2018-01-25 14:38:46,336 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,336 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,336 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,337 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,337 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 625 2018-01-25 14:38:46,337 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,337 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 649 2018-01-25 14:38:46,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:46,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 679 2018-01-25 14:38:46,356 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 703 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,357 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1140626538_35_-1536465369 for net.sf.jasperreports.engine.base.ElementsBlock@43fc946a 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@43fc946a for [] 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@1045bbc8 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 35 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 33 generated 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,358 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1140626538_35_-1536465369 2018-01-25 14:38:46,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@43fc946a with id 280951592_1140626538_35_-1536465369 2018-01-25 14:38:46,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,359 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-14 (java.sql.Date/1513209600000) to 12/14/17 2018-01-25 14:38:46,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:46,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,374 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 223 2018-01-25 14:38:46,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 247 2018-01-25 14:38:46,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-14 (java.sql.Date/1513209600000) to 12/14/17 2018-01-25 14:38:46,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:46,375 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 286 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 310 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,376 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,378 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: Buyer header at 334 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,379 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1355647534_36_366528503 for net.sf.jasperreports.engine.base.ElementsBlock@50cd8a2e 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@50cd8a2e for [] 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@27cee7be 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 36 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 34 generated 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1355647534_36_366528503 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@50cd8a2e with id 280951592_1355647534_36_366528503 2018-01-25 14:38:46,380 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 160 2018-01-25 14:38:46,381 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,384 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 184 2018-01-25 14:38:46,384 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-06 (java.sql.Date/1512518400000) to 12/6/17 2018-01-25 14:38:46,384 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:46,385 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,385 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,385 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,386 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 223 2018-01-25 14:38:46,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,414 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 247 2018-01-25 14:38:46,415 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,418 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,418 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,418 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 271 2018-01-25 14:38:46,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 295 2018-01-25 14:38:46,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:46,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-08 (java.sql.Date/1512691200000) to 12/8/17 2018-01-25 14:38:46,419 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 319 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-15 (java.sql.Date/1513296000000) to 12/15/17 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 343 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:46,420 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-05 (java.sql.Date/1512432000000) to 12/5/17 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 373 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-03 (java.sql.Date/1514937600000) to 1/3/18 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 397 2018-01-25 14:38:46,421 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:46,422 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,422 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,422 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 436 2018-01-25 14:38:46,422 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:46,422 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-13 (java.sql.Date/1513123200000) to 12/13/17 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 460 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-12 (java.sql.Date/1513036800000) to 12/12/17 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-13 (java.sql.Date/1513123200000) to 12/13/17 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 484 2018-01-25 14:38:46,423 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 508 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-21 (java.sql.Date/1513814400000) to 12/21/17 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,424 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 532 2018-01-25 14:38:46,425 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,425 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,425 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,425 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 571 2018-01-25 14:38:46,425 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,425 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,426 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,426 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 595 2018-01-25 14:38:46,426 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,426 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,459 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,459 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 619 2018-01-25 14:38:46,459 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,459 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 643 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-04 (java.sql.Date/1515024000000) to 1/4/18 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 667 2018-01-25 14:38:46,460 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,461 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,462 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,462 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 706 2018-01-25 14:38:46,462 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_442210482_37_1877891329 for net.sf.jasperreports.engine.base.ElementsBlock@1a5b98b2 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@1a5b98b2 for [] 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@22e2817e 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 37 2018-01-25 14:38:46,463 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 35 generated 2018-01-25 14:38:46,464 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,464 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_442210482_37_1877891329 2018-01-25 14:38:46,464 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@1a5b98b2 with id 280951592_442210482_37_1877891329 2018-01-25 14:38:46,464 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,464 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,464 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,465 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,465 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,465 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,465 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,465 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,465 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 208 2018-01-25 14:38:46,466 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-26 (java.sql.Date/1514246400000) to 12/26/17 2018-01-25 14:38:46,466 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,466 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 232 2018-01-25 14:38:46,466 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,466 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,466 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 256 2018-01-25 14:38:46,467 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,488 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,488 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 280 2018-01-25 14:38:46,488 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 304 2018-01-25 14:38:46,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 328 2018-01-25 14:38:46,489 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 352 2018-01-25 14:38:46,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 376 2018-01-25 14:38:46,490 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 400 2018-01-25 14:38:46,491 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,499 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,499 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 424 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 448 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,500 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 472 2018-01-25 14:38:46,501 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,501 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,501 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,501 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 496 2018-01-25 14:38:46,501 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,501 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,506 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 520 2018-01-25 14:38:46,506 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,506 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,506 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 544 2018-01-25 14:38:46,506 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,506 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 568 2018-01-25 14:38:46,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,507 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,519 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 592 2018-01-25 14:38:46,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 616 2018-01-25 14:38:46,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-10-03 (java.sql.Date/1506988800000) to 10/3/17 2018-01-25 14:38:46,520 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-10-13 (java.sql.Date/1507852800000) to 10/13/17 2018-01-25 14:38:46,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,559 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_1173009639_38_238135028 for net.sf.jasperreports.engine.base.ElementsBlock@45eab4e7 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@45eab4e7 for [] 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@2c3f3853 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 38 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 36 generated 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,560 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_1173009639_38_238135028 2018-01-25 14:38:46,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@45eab4e7 with id 280951592_1173009639_38_238135028 2018-01-25 14:38:46,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,561 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,572 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 235 2018-01-25 14:38:46,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-11-29 (java.sql.Date/1511913600000) to 11/29/17 2018-01-25 14:38:46,577 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2017-12-01 (java.sql.Date/1512086400000) to 12/1/17 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 265 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 289 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,578 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 313 2018-01-25 14:38:46,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,579 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-19 (java.sql.Date/1516320000000) to 1/19/18 2018-01-25 14:38:46,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 337 2018-01-25 14:38:46,588 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 361 2018-01-25 14:38:46,589 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 385 2018-01-25 14:38:46,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-17 (java.sql.Date/1516147200000) to 1/17/18 2018-01-25 14:38:46,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 409 2018-01-25 14:38:46,590 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 433 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,591 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 457 2018-01-25 14:38:46,592 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,592 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 481 2018-01-25 14:38:46,592 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 505 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,593 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 529 2018-01-25 14:38:46,594 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,594 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 553 2018-01-25 14:38:46,594 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,595 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 577 2018-01-25 14:38:46,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 601 2018-01-25 14:38:46,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-23 (java.sql.Date/1516665600000) to 1/23/18 2018-01-25 14:38:46,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,596 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 625 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 649 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,605 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 673 2018-01-25 14:38:46,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,606 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 697 2018-01-25 14:38:46,607 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,607 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ElementsBlock:230 - generated uid 280951592_753347770_39_-1098337296 for net.sf.jasperreports.engine.base.ElementsBlock@2ce72cba 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 VirtualizableElementList:77 - created block net.sf.jasperreports.engine.base.ElementsBlock@2ce72cba for [] 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVirtualPrintPage:113 - created list [] for page net.sf.jasperreports.engine.base.JRVirtualPrintPage@3c5e20a9 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:1303 - Fill 1: adding page 39 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:347 - page 37 generated 2018-01-25 14:38:46,608 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:374 - Fill 1: page header at 40 2018-01-25 14:38:46,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:342 - registering 280951592_753347770_39_-1098337296 2018-01-25 14:38:46,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRAbstractLRUVirtualizer:358 - registered object net.sf.jasperreports.engine.base.ElementsBlock@2ce72cba with id 280951592_753347770_39_-1098337296 2018-01-25 14:38:46,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 2005485063} 2018-01-25 14:38:46,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:456 - Fill 1: column header at 93 2018-01-25 14:38:46,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 648379431} 2018-01-25 14:38:46,609 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1860275365} 2018-01-25 14:38:46,610 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,610 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-04 (java.sql.Date/1512345600000) to 12/4/17 2018-01-25 14:38:46,610 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,610 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 223 2018-01-25 14:38:46,610 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 247 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-11 (java.sql.Date/1515628800000) to 1/11/18 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-18 (java.sql.Date/1516233600000) to 1/18/18 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,611 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 271 2018-01-25 14:38:46,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,612 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 295 2018-01-25 14:38:46,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2017-12-29 (java.sql.Date/1514505600000) to 12/29/17 2018-01-25 14:38:46,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-05 (java.sql.Date/1515110400000) to 1/5/18 2018-01-25 14:38:46,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 319 2018-01-25 14:38:46,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-02 (java.sql.Date/1514851200000) to 1/2/18 2018-01-25 14:38:46,621 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 79944243-69ac-4d2f-afe3-8ab823bfa50b: formatted value 2018-01-12 (java.sql.Date/1515715200000) to 1/12/18 2018-01-25 14:38:46,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 343 2018-01-25 14:38:46,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 367 2018-01-25 14:38:46,622 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 391 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 415 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,623 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 439 2018-01-25 14:38:46,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 463 2018-01-25 14:38:46,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,624 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 487 2018-01-25 14:38:46,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 511 2018-01-25 14:38:46,625 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,626 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 535 2018-01-25 14:38:46,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 559 2018-01-25 14:38:46,627 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,628 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:558 - Fill 1: VendorGroup header at 583 2018-01-25 14:38:46,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 62669940} 2018-01-25 14:38:46,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 607 2018-01-25 14:38:46,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,637 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:702 - Fill 1: detail at 631 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillTextField:560 - 8fcdb267-b367-44d1-97ac-5ce782ac86c2: formatted value 2018-01-24 (java.sql.Date/1516752000000) to 1/24/18 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 48057567} 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1803543069} 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1538787238} 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:1013 - Fill 1: summary at 655 2018-01-25 14:38:46,638 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1310296118} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRVerticalFiller:987 - Fill 1: page footer at 719 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 1534560982} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: BAND, group: null, band: 586148539} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: Buyer, band: 0} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: GROUP, group: VendorGroup, band: 0} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: COLUMN, group: null, band: 0} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: PAGE, group: null, band: 0} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: REPORT, group: null, band: 0} 2018-01-25 14:38:46,639 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DelayedFillActions:227 - 1 running delayed actions on {type: MASTER, group: null, band: 0} 2018-01-25 14:38:46,640 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRBaseFiller:604 - Fill 1: ended 2018-01-25 14:38:46,640 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:960 - populating unsorted cache 2018-01-25 14:38:46,643 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1639134863 for LongArrayStore@1690864695 2018-01-25 14:38:46,644 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@203160173 with buffer LongArrayStore@1690864695, buffer size 4096 2018-01-25 14:38:46,644 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@713839811: created value store BlockColumnStore@203160173 for type class java.lang.Integer 2018-01-25 14:38:46,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@287983819 for ObjectArrayStore@1668854016 2018-01-25 14:38:46,673 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1510964518 with buffer ObjectArrayStore@1668854016, buffer size 4096 2018-01-25 14:38:46,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1890885229: created value store BlockColumnStore@1510964518 for type class java.lang.String 2018-01-25 14:38:46,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@318727453 for LongArrayStore@859364393 2018-01-25 14:38:46,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@661550971 with buffer LongArrayStore@859364393, buffer size 4096 2018-01-25 14:38:46,674 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@879099253: created value store BlockColumnStore@661550971 for type class java.lang.Integer 2018-01-25 14:38:46,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@58066013 for LongArrayStore@791292762 2018-01-25 14:38:46,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DateStore:49 - DateStore@217991336: created time store LongArrayStore@791292762 2018-01-25 14:38:46,675 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@2134283855 with buffer DateStore@217991336, buffer size 4096 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1739760245: created value store BlockColumnStore@2134283855 for type class java.sql.Date 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@185947211 for LongArrayStore@1088044936 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@449210106 with buffer LongArrayStore@1088044936, buffer size 4096 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1011028455: created value store BlockColumnStore@449210106 for type class java.lang.Integer 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@2044880362 for ObjectArrayStore@1345990042 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@2077413266 with buffer ObjectArrayStore@1345990042, buffer size 4096 2018-01-25 14:38:46,676 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1973876017: created value store BlockColumnStore@2077413266 for type class java.lang.String 2018-01-25 14:38:46,677 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@789793200 for LongArrayStore@733877325 2018-01-25 14:38:46,677 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@1501298380: created long store LongArrayStore@733877325 2018-01-25 14:38:46,677 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@940691333 with buffer BooleanStore@1501298380, buffer size 4096 2018-01-25 14:38:46,677 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@1089995730: created null store BlockColumnStore@940691333 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1582303614 for ObjectArrayStore@1745586390 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1582925889 with buffer ObjectArrayStore@1745586390, buffer size 4096 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@798538309: created value store BlockColumnStore@1582925889 for type class java.lang.String 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@224955431 for ObjectArrayStore@534840907 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1615384901 with buffer ObjectArrayStore@534840907, buffer size 4096 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1289293156: created value store BlockColumnStore@1615384901 for type class java.lang.String 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1985424513 for ObjectArrayStore@1345522167 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1669671223 with buffer ObjectArrayStore@1345522167, buffer size 4096 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1707272362: created value store BlockColumnStore@1669671223 for type class java.lang.String 2018-01-25 14:38:46,678 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1655777697 for ObjectArrayStore@674723921 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1185650233 with buffer ObjectArrayStore@674723921, buffer size 4096 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1458680384: created value store BlockColumnStore@1185650233 for type class java.lang.String 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@315026879 for LongArrayStore@147237760 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@730064075 with buffer LongArrayStore@147237760, buffer size 4096 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@989092276: created value store BlockColumnStore@730064075 for type class java.lang.Integer 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@96778191 for ObjectArrayStore@836091392 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@896627208 with buffer ObjectArrayStore@836091392, buffer size 4096 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@182081370: created value store BlockColumnStore@896627208 for type class java.lang.String 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@2096377865 for ObjectArrayStore@1118567597 2018-01-25 14:38:46,679 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@302695706 with buffer ObjectArrayStore@1118567597, buffer size 4096 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1363459209: created value store BlockColumnStore@302695706 for type class java.lang.String 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1847005901 for ObjectArrayStore@712062976 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@692044995 with buffer ObjectArrayStore@712062976, buffer size 4096 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1287616836: created value store BlockColumnStore@692044995 for type class java.lang.String 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1902821074 for ObjectArrayStore@648312288 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@297236555 with buffer ObjectArrayStore@648312288, buffer size 4096 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1514364449: created value store BlockColumnStore@297236555 for type class java.lang.String 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@795875761 for LongArrayStore@95373620 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1930876856 with buffer LongArrayStore@95373620, buffer size 4096 2018-01-25 14:38:46,680 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1162757368: created value store BlockColumnStore@1930876856 for type class java.lang.Integer 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@328470230 for ObjectArrayStore@1459265547 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1635186880 with buffer ObjectArrayStore@1459265547, buffer size 4096 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@331425457: created value store BlockColumnStore@1635186880 for type class java.lang.String 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@766004333 for ObjectArrayStore@2077098464 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@817430662 with buffer ObjectArrayStore@2077098464, buffer size 4096 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@892810778: created value store BlockColumnStore@817430662 for type class java.lang.String 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1404967818 for LongArrayStore@729517131 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@1983173534: created long store LongArrayStore@729517131 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@572208040 with buffer BooleanStore@1983173534, buffer size 4096 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@1650641882: created null store BlockColumnStore@572208040 2018-01-25 14:38:46,681 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1343624802 for LongArrayStore@728492475 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1059098698 with buffer LongArrayStore@728492475, buffer size 4096 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@571805825: created value store BlockColumnStore@1059098698 for type class java.lang.Integer 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@809722523 for LongArrayStore@190449177 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@1863259541: created long store LongArrayStore@190449177 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@524441868 with buffer BooleanStore@1863259541, buffer size 4096 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@1253830710: created null store BlockColumnStore@524441868 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1469676478 for ObjectArrayStore@1520358008 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1836578250 with buffer ObjectArrayStore@1520358008, buffer size 4096 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@491150649: created value store BlockColumnStore@1836578250 for type class java.lang.String 2018-01-25 14:38:46,682 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@903826049 for LongArrayStore@1741955157 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@1130062688: created long store LongArrayStore@1741955157 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1250950534 with buffer BooleanStore@1130062688, buffer size 4096 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@675010916: created null store BlockColumnStore@1250950534 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@83057322 for ObjectArrayStore@832959615 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1750147333 with buffer ObjectArrayStore@832959615, buffer size 4096 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@2116918703: created value store BlockColumnStore@1750147333 for type class java.lang.String 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1938098801 for LongArrayStore@314393613 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@1281231389: created long store LongArrayStore@314393613 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1874261166 with buffer BooleanStore@1281231389, buffer size 4096 2018-01-25 14:38:46,683 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@268571299: created null store BlockColumnStore@1874261166 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@139215884 for LongArrayStore@1342685743 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@2076195311: created long store LongArrayStore@1342685743 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@2143207426 with buffer BooleanStore@2076195311, buffer size 4096 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@1042868573: created null store BlockColumnStore@2143207426 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1839939836 for LongArrayStore@1679569819 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@888799224: created long store LongArrayStore@1679569819 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@107449911 with buffer BooleanStore@888799224, buffer size 4096 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@2025988274: created null store BlockColumnStore@107449911 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 1 for original index 293 2018-01-25 14:38:46,684 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@767585885 for LongArrayStore@568504606 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1248147527 with buffer LongArrayStore@568504606, buffer size 4096 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1089995730: created value store BlockColumnStore@1248147527 for type class java.lang.Integer 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@542955839 for ObjectArrayStore@1125673587 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@104708107 with buffer ObjectArrayStore@1125673587, buffer size 4096 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@268571299: created value store BlockColumnStore@104708107 for type class java.lang.String 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@842456087 for ObjectArrayStore@1503709114 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@79320944 with buffer ObjectArrayStore@1503709114, buffer size 4096 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1042868573: created value store BlockColumnStore@79320944 for type class java.lang.String 2018-01-25 14:38:46,685 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1952441049 for ObjectArrayStore@570964725 2018-01-25 14:38:46,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1775546287 with buffer ObjectArrayStore@570964725, buffer size 4096 2018-01-25 14:38:46,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@2025988274: created value store BlockColumnStore@1775546287 for type class java.lang.String 2018-01-25 14:38:46,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 2 for original index 247 2018-01-25 14:38:46,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1904418368 for LongArrayStore@634060007 2018-01-25 14:38:46,722 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DateStore:49 - DateStore@2128825152: created time store LongArrayStore@634060007 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1705295902 with buffer DateStore@2128825152, buffer size 4096 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@675010916: created value store BlockColumnStore@1705295902 for type class java.sql.Date 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 3 for original index 232 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 4 for original index 125 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 5 for original index 353 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1302718038 for LongArrayStore@363570907 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@1119564248: created long store LongArrayStore@363570907 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1746607907 with buffer BooleanStore@1119564248, buffer size 4096 2018-01-25 14:38:46,723 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@571805825: created null store BlockColumnStore@1746607907 2018-01-25 14:38:46,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1570516993 for ObjectArrayStore@1833881238 2018-01-25 14:38:46,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@4012857 with buffer ObjectArrayStore@1833881238, buffer size 4096 2018-01-25 14:38:46,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1253830710: created value store BlockColumnStore@4012857 for type class java.lang.String 2018-01-25 14:38:46,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 6 for original index 168 2018-01-25 14:38:46,724 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 7 for original index 418 2018-01-25 14:38:46,725 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 8 for original index 74 2018-01-25 14:38:46,725 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 9 for original index 222 2018-01-25 14:38:46,727 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@545437990 for LongArrayStore@1962060241 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 DateStore:49 - DateStore@1649720691: created time store LongArrayStore@1962060241 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@922215555 with buffer DateStore@1649720691, buffer size 4096 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:126 - TypedColumnStore@1650641882: created value store BlockColumnStore@922215555 for type class java.sql.Date 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 10 for original index 225 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:53 - created RunLengthStore@1680534339 for LongArrayStore@454848630 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:56 - BooleanStore@217718413: created long store LongArrayStore@454848630 2018-01-25 14:38:46,728 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:180 - created block store BlockColumnStore@1205785843 with buffer BooleanStore@217718413, buffer size 4096 2018-01-25 14:38:46,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:105 - TypedColumnStore@1739760245: created null store BlockColumnStore@1205785843 2018-01-25 14:38:46,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 11 for original index 298 2018-01-25 14:38:46,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 12 for original index 280 2018-01-25 14:38:46,729 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 13 for original index 226 2018-01-25 14:38:46,730 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 14 for original index 56 2018-01-25 14:38:46,733 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 15 for original index 75 2018-01-25 14:38:46,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 16 for original index 307 2018-01-25 14:38:46,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 17 for original index 300 2018-01-25 14:38:46,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 18 for original index 129 2018-01-25 14:38:46,734 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 19 for original index 279 2018-01-25 14:38:46,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 20 for original index 89 2018-01-25 14:38:46,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 21 for original index 33 2018-01-25 14:38:46,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 22 for original index 31 2018-01-25 14:38:46,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 23 for original index 159 2018-01-25 14:38:46,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 24 for original index 160 2018-01-25 14:38:46,756 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 25 for original index 76 2018-01-25 14:38:46,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 26 for original index 77 2018-01-25 14:38:46,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 27 for original index 419 2018-01-25 14:38:46,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 28 for original index 188 2018-01-25 14:38:46,757 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 29 for original index 97 2018-01-25 14:38:46,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 30 for original index 386 2018-01-25 14:38:46,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 31 for original index 387 2018-01-25 14:38:46,758 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 32 for original index 388 2018-01-25 14:38:46,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 33 for original index 432 2018-01-25 14:38:46,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 34 for original index 333 2018-01-25 14:38:46,778 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 35 for original index 34 2018-01-25 14:38:46,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 36 for original index 277 2018-01-25 14:38:46,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 37 for original index 79 2018-01-25 14:38:46,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 38 for original index 57 2018-01-25 14:38:46,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 39 for original index 78 2018-01-25 14:38:46,779 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 40 for original index 297 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 41 for original index 288 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 42 for original index 289 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 43 for original index 290 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 44 for original index 291 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 45 for original index 292 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 46 for original index 294 2018-01-25 14:38:46,780 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 47 for original index 295 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 48 for original index 296 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 49 for original index 334 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 50 for original index 189 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 51 for original index 384 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 52 for original index 80 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 53 for original index 3 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 54 for original index 243 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 55 for original index 326 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 56 for original index 4 2018-01-25 14:38:46,781 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 57 for original index 241 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 58 for original index 195 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 59 for original index 389 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 60 for original index 390 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 61 for original index 391 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 62 for original index 392 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 63 for original index 281 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 64 for original index 248 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 65 for original index 98 2018-01-25 14:38:46,782 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 66 for original index 381 2018-01-25 14:38:46,783 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 67 for original index 382 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 68 for original index 169 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 69 for original index 170 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 70 for original index 171 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 71 for original index 299 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 72 for original index 227 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 73 for original index 228 2018-01-25 14:38:46,795 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 74 for original index 229 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 75 for original index 136 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 76 for original index 282 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 77 for original index 52 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 78 for original index 102 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 79 for original index 336 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 80 for original index 17 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 81 for original index 18 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 82 for original index 325 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 83 for original index 58 2018-01-25 14:38:46,796 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 84 for original index 393 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 85 for original index 394 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 86 for original index 19 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 87 for original index 29 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 88 for original index 242 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 89 for original index 172 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 90 for original index 198 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 91 for original index 166 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 92 for original index 337 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 93 for original index 260 2018-01-25 14:38:46,797 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 94 for original index 115 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 95 for original index 21 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 96 for original index 352 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 97 for original index 32 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 98 for original index 395 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 99 for original index 396 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 100 for original index 137 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 101 for original index 397 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 102 for original index 398 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 103 for original index 399 2018-01-25 14:38:46,798 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 104 for original index 400 2018-01-25 14:38:46,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 105 for original index 401 2018-01-25 14:38:46,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 106 for original index 402 2018-01-25 14:38:46,799 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 107 for original index 59 2018-01-25 14:38:46,801 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 108 for original index 60 2018-01-25 14:38:46,801 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 109 for original index 2 2018-01-25 14:38:46,801 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 110 for original index 234 2018-01-25 14:38:46,801 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 111 for original index 235 2018-01-25 14:38:46,801 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 112 for original index 339 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 113 for original index 338 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 114 for original index 49 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 115 for original index 130 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 116 for original index 22 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 117 for original index 340 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 118 for original index 341 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 119 for original index 81 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 120 for original index 245 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 121 for original index 363 2018-01-25 14:38:46,802 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 122 for original index 364 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 123 for original index 190 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 124 for original index 191 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 125 for original index 163 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 126 for original index 173 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 127 for original index 174 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 128 for original index 435 2018-01-25 14:38:46,803 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 129 for original index 436 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 130 for original index 199 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 131 for original index 200 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 132 for original index 201 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 133 for original index 202 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 134 for original index 224 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 135 for original index 239 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 136 for original index 240 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 137 for original index 358 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 138 for original index 351 2018-01-25 14:38:46,804 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 139 for original index 335 2018-01-25 14:38:46,805 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 140 for original index 230 2018-01-25 14:38:46,805 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 141 for original index 116 2018-01-25 14:38:46,805 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 142 for original index 278 2018-01-25 14:38:46,805 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 143 for original index 274 2018-01-25 14:38:46,805 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 144 for original index 103 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 145 for original index 104 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 146 for original index 105 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 147 for original index 106 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 148 for original index 107 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 149 for original index 275 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 150 for original index 99 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 151 for original index 90 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 152 for original index 91 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 153 for original index 82 2018-01-25 14:38:46,806 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 154 for original index 1 2018-01-25 14:38:46,807 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 155 for original index 379 2018-01-25 14:38:46,807 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 156 for original index 14 2018-01-25 14:38:46,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 157 for original index 5 2018-01-25 14:38:46,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 158 for original index 433 2018-01-25 14:38:46,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 159 for original index 27 2018-01-25 14:38:46,819 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 160 for original index 250 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 161 for original index 342 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 162 for original index 343 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 163 for original index 117 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 164 for original index 118 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 165 for original index 119 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 166 for original index 121 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 167 for original index 120 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 168 for original index 6 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 169 for original index 61 2018-01-25 14:38:46,820 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 170 for original index 83 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 171 for original index 101 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 172 for original index 249 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 173 for original index 231 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 174 for original index 71 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 175 for original index 161 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 176 for original index 72 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 177 for original index 192 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 178 for original index 23 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 179 for original index 24 2018-01-25 14:38:46,821 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 180 for original index 26 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 181 for original index 246 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 182 for original index 92 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 183 for original index 346 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 184 for original index 7 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 185 for original index 45 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 186 for original index 131 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 187 for original index 132 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 188 for original index 197 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 189 for original index 133 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 190 for original index 203 2018-01-25 14:38:46,822 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 191 for original index 204 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 192 for original index 214 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 193 for original index 215 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 194 for original index 216 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 195 for original index 217 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 196 for original index 218 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 197 for original index 219 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 198 for original index 220 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 199 for original index 221 2018-01-25 14:38:46,823 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 200 for original index 345 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 201 for original index 205 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 202 for original index 206 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 203 for original index 207 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 204 for original index 208 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 205 for original index 209 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 206 for original index 210 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 207 for original index 211 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 208 for original index 212 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 209 for original index 213 2018-01-25 14:38:46,824 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 210 for original index 347 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 211 for original index 164 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 212 for original index 376 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 213 for original index 366 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 214 for original index 367 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 215 for original index 264 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 216 for original index 265 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 217 for original index 365 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 218 for original index 263 2018-01-25 14:38:46,825 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 219 for original index 165 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 220 for original index 151 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 221 for original index 141 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 222 for original index 434 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 223 for original index 420 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 224 for original index 63 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 225 for original index 362 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 226 for original index 236 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 227 for original index 237 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 228 for original index 223 2018-01-25 14:38:46,826 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 229 for original index 175 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 230 for original index 176 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 231 for original index 177 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 232 for original index 403 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 233 for original index 404 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 234 for original index 405 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 235 for original index 406 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 236 for original index 407 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 237 for original index 142 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 238 for original index 62 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 239 for original index 344 2018-01-25 14:38:46,827 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 240 for original index 257 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 241 for original index 251 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 242 for original index 301 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 243 for original index 302 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 244 for original index 308 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 245 for original index 421 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 246 for original index 422 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 247 for original index 423 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 248 for original index 154 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 249 for original index 309 2018-01-25 14:38:46,828 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 250 for original index 310 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 251 for original index 311 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 252 for original index 312 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 253 for original index 313 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 254 for original index 314 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 255 for original index 315 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 256 for original index 158 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 257 for original index 138 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 258 for original index 123 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 259 for original index 93 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 260 for original index 94 2018-01-25 14:38:46,829 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 261 for original index 84 2018-01-25 14:38:46,830 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 262 for original index 152 2018-01-25 14:38:46,830 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 263 for original index 124 2018-01-25 14:38:46,830 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 264 for original index 153 2018-01-25 14:38:46,830 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 265 for original index 28 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 266 for original index 122 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 267 for original index 261 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 268 for original index 262 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 269 for original index 327 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 270 for original index 193 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 271 for original index 194 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 272 for original index 53 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 273 for original index 54 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 274 for original index 139 2018-01-25 14:38:46,844 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 275 for original index 155 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 276 for original index 64 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 277 for original index 85 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 278 for original index 355 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 279 for original index 178 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 280 for original index 179 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 281 for original index 180 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 282 for original index 233 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 283 for original index 100 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 284 for original index 25 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 285 for original index 348 2018-01-25 14:38:46,845 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 286 for original index 349 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 287 for original index 350 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 288 for original index 11 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 289 for original index 424 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 290 for original index 65 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 291 for original index 370 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 292 for original index 86 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 293 for original index 368 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 294 for original index 369 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 295 for original index 252 2018-01-25 14:38:46,846 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 296 for original index 253 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 297 for original index 254 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 298 for original index 375 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 299 for original index 266 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 300 for original index 8 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 301 for original index 12 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 302 for original index 380 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 303 for original index 431 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 304 for original index 128 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 305 for original index 127 2018-01-25 14:38:46,847 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 306 for original index 126 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 307 for original index 196 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 308 for original index 385 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 309 for original index 428 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 310 for original index 427 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 311 for original index 259 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 312 for original index 316 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 313 for original index 317 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 314 for original index 318 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 315 for original index 319 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 316 for original index 320 2018-01-25 14:38:46,848 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 317 for original index 321 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 318 for original index 322 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 319 for original index 323 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 320 for original index 303 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 321 for original index 304 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 322 for original index 305 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 323 for original index 10 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 324 for original index 356 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 325 for original index 357 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 326 for original index 39 2018-01-25 14:38:46,849 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 327 for original index 37 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 328 for original index 283 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 329 for original index 181 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 330 for original index 182 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 331 for original index 183 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 332 for original index 184 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 333 for original index 185 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 334 for original index 186 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 335 for original index 187 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 336 for original index 162 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 337 for original index 156 2018-01-25 14:38:46,850 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 338 for original index 87 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 339 for original index 88 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 340 for original index 69 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 341 for original index 140 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 342 for original index 96 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 343 for original index 67 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 344 for original index 66 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 345 for original index 108 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 346 for original index 109 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 347 for original index 110 2018-01-25 14:38:46,851 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 348 for original index 111 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 349 for original index 112 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 350 for original index 113 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 351 for original index 68 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 352 for original index 95 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 353 for original index 324 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 354 for original index 306 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 355 for original index 285 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 356 for original index 286 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 357 for original index 15 2018-01-25 14:38:46,868 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 358 for original index 48 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 359 for original index 238 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 360 for original index 70 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 361 for original index 157 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 362 for original index 255 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 363 for original index 256 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 364 for original index 328 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 365 for original index 329 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 366 for original index 330 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 367 for original index 331 2018-01-25 14:38:46,869 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 368 for original index 332 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 369 for original index 55 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 370 for original index 284 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 371 for original index 258 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 372 for original index 114 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 373 for original index 408 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 374 for original index 409 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 375 for original index 410 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 376 for original index 411 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 377 for original index 412 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 378 for original index 413 2018-01-25 14:38:46,870 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 379 for original index 414 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 380 for original index 378 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 381 for original index 20 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 382 for original index 273 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 383 for original index 43 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 384 for original index 44 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 385 for original index 38 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 386 for original index 41 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 387 for original index 40 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 388 for original index 383 2018-01-25 14:38:46,871 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 389 for original index 42 2018-01-25 14:38:46,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 390 for original index 73 2018-01-25 14:38:46,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 391 for original index 377 2018-01-25 14:38:46,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 392 for original index 430 2018-01-25 14:38:46,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 393 for original index 35 2018-01-25 14:38:46,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 394 for original index 36 2018-01-25 14:38:46,884 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 395 for original index 46 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 396 for original index 426 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 397 for original index 429 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 398 for original index 425 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 399 for original index 167 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 400 for original index 50 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 401 for original index 134 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 402 for original index 359 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 403 for original index 51 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 404 for original index 361 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 405 for original index 135 2018-01-25 14:38:46,885 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 406 for original index 360 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 407 for original index 47 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 408 for original index 437 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 409 for original index 438 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 410 for original index 439 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 411 for original index 440 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 412 for original index 441 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 413 for original index 442 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 414 for original index 443 2018-01-25 14:38:46,886 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 415 for original index 444 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 416 for original index 445 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 417 for original index 446 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 418 for original index 267 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 419 for original index 268 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 420 for original index 269 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 421 for original index 270 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 422 for original index 271 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 423 for original index 276 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 424 for original index 143 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 425 for original index 144 2018-01-25 14:38:46,887 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 426 for original index 145 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 427 for original index 146 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 428 for original index 147 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 429 for original index 148 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 430 for original index 149 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 431 for original index 150 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 432 for original index 13 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 433 for original index 372 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 434 for original index 371 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 435 for original index 354 2018-01-25 14:38:46,888 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 436 for original index 373 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 437 for original index 374 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 438 for original index 287 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 439 for original index 416 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 440 for original index 9 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 441 for original index 16 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 442 for original index 447 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 443 for original index 448 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 444 for original index 417 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 445 for original index 415 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 446 for original index 272 2018-01-25 14:38:46,889 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 447 for original index 30 2018-01-25 14:38:46,890 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 JRFillDataset:992 - unsorted index 448 for original index 244 2018-01-25 14:38:46,890 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:351 - Recorded cached data source of 448 records 2018-01-25 14:38:46,890 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:182 - LongArrayStore@1690864695: constant value of size 448 2018-01-25 14:38:46,891 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@713839811: created not null values of size 448 2018-01-25 14:38:46,891 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:148 - ObjectArrayStore@1668854016: constant value of size 448 2018-01-25 14:38:46,891 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1890885229: created not null values of size 448 2018-01-25 14:38:46,892 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@859364393: using offset 29150 2018-01-25 14:38:46,905 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@859364393: creating values of count 448, value length SHORT 2018-01-25 14:38:46,908 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@879099253: created not null values of size 448 2018-01-25 14:38:46,908 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@791292762: using offset 1424995200000 2018-01-25 14:38:46,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:220 - LongArrayStore@791292762: using factor 86400000 2018-01-25 14:38:46,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@58066013: using run lengths count 120, original count 439 2018-01-25 14:38:46,912 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@58066013: creating run lengths of count 120, value length BYTE 2018-01-25 14:38:46,941 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@791292762: creating values of count 120, value length SHORT 2018-01-25 14:38:46,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@217718413: creating long store of boolean size 448 2018-01-25 14:38:46,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@454848630: using offset -9223372036854464512 2018-01-25 14:38:46,942 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@454848630: creating values of count 7, value length LONG 2018-01-25 14:38:46,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@1739760245: created not nulluable values of size 448, non null size 439 2018-01-25 14:38:46,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@1088044936: using offset 33 2018-01-25 14:38:46,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@1088044936: creating values of count 448, value length BYTE 2018-01-25 14:38:46,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1011028455: created not null values of size 448 2018-01-25 14:38:46,944 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1345990042: creating values of size 448 2018-01-25 14:38:46,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1973876017: created not null values of size 448 2018-01-25 14:38:46,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@568504606: using offset 3509 2018-01-25 14:38:46,945 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@767585885: using run lengths count 274, original count 430 2018-01-25 14:38:46,957 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@767585885: creating run lengths of count 274, value length BYTE 2018-01-25 14:38:46,957 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@568504606: creating values of count 274, value length SHORT 2018-01-25 14:38:46,957 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@1501298380: creating long store of boolean size 448 2018-01-25 14:38:46,957 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@733877325: using offset -9223372036854464512 2018-01-25 14:38:46,957 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@733877325: creating values of count 7, value length LONG 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@1089995730: created not nulluable values of size 448, non null size 430 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1745586390: creating values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@798538309: created not null values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@534840907: creating values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1289293156: created not null values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1345522167: creating values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1707272362: created not null values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@674723921: creating values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1458680384: created not null values of size 448 2018-01-25 14:38:46,958 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@147237760: using offset 1966 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@147237760: creating values of count 448, value length BYTE 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@989092276: created not null values of size 448 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@96778191: using run lengths count 220, original count 448 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@96778191: creating run lengths of count 220, value length BYTE 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@836091392: creating values of size 220 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@182081370: created not null values of size 448 2018-01-25 14:38:46,959 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@2096377865: using run lengths count 220, original count 448 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@2096377865: creating run lengths of count 220, value length BYTE 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1118567597: creating values of size 220 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1363459209: created not null values of size 448 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@1847005901: using run lengths count 220, original count 448 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@1847005901: creating run lengths of count 220, value length BYTE 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@712062976: creating values of size 220 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1287616836: created not null values of size 448 2018-01-25 14:38:46,999 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@1902821074: using run lengths count 3, original count 448 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@1902821074: creating run lengths of count 3, value length SHORT 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@648312288: creating values of size 3 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1514364449: created not null values of size 448 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@795875761: using run lengths count 25, original count 448 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@795875761: creating run lengths of count 25, value length BYTE 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@95373620: creating values of count 25, value length BYTE 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@1162757368: created not null values of size 448 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@328470230: using run lengths count 21, original count 448 2018-01-25 14:38:47,000 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@328470230: creating run lengths of count 21, value length SHORT 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1459265547: creating values of size 21 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@331425457: created not null values of size 448 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@766004333: using run lengths count 21, original count 448 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@766004333: creating run lengths of count 21, value length SHORT 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@2077098464: creating values of size 21 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@892810778: created not null values of size 448 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@1962060241: using offset 1510099200000 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:220 - LongArrayStore@1962060241: using factor 86400000 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@1962060241: creating values of count 10, value length BYTE 2018-01-25 14:38:47,001 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@1983173534: creating long store of boolean size 448 2018-01-25 14:38:47,002 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@729517131: using offset -18014437168513537 2018-01-25 14:38:47,002 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@729517131: creating values of count 7, value length LONG 2018-01-25 14:38:47,002 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@1650641882: created not nulluable values of size 448, non null size 10 2018-01-25 14:38:47,002 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@728492475: using offset 1620 2018-01-25 14:38:47,002 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@728492475: creating values of count 173, value length INT 2018-01-25 14:38:47,003 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@1119564248: creating long store of boolean size 448 2018-01-25 14:38:47,003 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@363570907: using offset -5318188757703196640 2018-01-25 14:38:47,003 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@363570907: creating values of count 7, value length LONG 2018-01-25 14:38:47,003 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@571805825: created not nulluable values of size 448, non null size 173 2018-01-25 14:38:47,003 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1833881238: creating values of size 81 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@1863259541: creating long store of boolean size 448 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@190449177: using offset -638948392680028897 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@190449177: creating values of count 7, value length LONG 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@1253830710: created not nulluable values of size 448, non null size 81 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1520358008: creating values of size 448 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@491150649: created not null values of size 448 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@634060007: using offset 1507852800000 2018-01-25 14:38:47,020 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:220 - LongArrayStore@634060007: using factor 86400000 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@634060007: creating values of count 186, value length BYTE 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@1130062688: creating long store of boolean size 448 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@1741955157: using offset -4400122410162358719 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@1741955157: creating values of count 7, value length LONG 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@675010916: created not nulluable values of size 448, non null size 186 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@83057322: using run lengths count 220, original count 448 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@83057322: creating run lengths of count 220, value length BYTE 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@832959615: creating values of size 220 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:165 - TypedColumnStore@2116918703: created not null values of size 448 2018-01-25 14:38:47,021 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@542955839: using run lengths count 274, original count 430 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@542955839: creating run lengths of count 274, value length BYTE 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1125673587: creating values of size 274 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@1281231389: creating long store of boolean size 448 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@314393613: using offset -9223372036854464512 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@314393613: creating values of count 7, value length LONG 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@268571299: created not nulluable values of size 448, non null size 430 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@842456087: using run lengths count 248, original count 430 2018-01-25 14:38:47,022 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@842456087: creating run lengths of count 248, value length BYTE 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@1503709114: creating values of size 248 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@2076195311: creating long store of boolean size 448 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@1342685743: using offset -9223372036854464512 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@1342685743: creating values of count 7, value length LONG 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@1042868573: created not nulluable values of size 448, non null size 430 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:92 - RunLengthStore@1952441049: using run lengths count 11, original count 430 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RunLengthStore:119 - RunLengthStore@1952441049: creating run lengths of count 11, value length BYTE 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ObjectArrayStore:159 - ObjectArrayStore@570964725: creating values of size 11 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BooleanStore:154 - BooleanStore@888799224: creating long store of boolean size 448 2018-01-25 14:38:47,023 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:200 - LongArrayStore@1679569819: using offset -9223372036854464512 2018-01-25 14:38:47,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 LongArrayStore:239 - LongArrayStore@1679569819: creating values of count 7, value length LONG 2018-01-25 14:38:47,024 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 TypedColumnStore:175 - TypedColumnStore@2025988274: created not nulluable values of size 448, non null size 430 2018-01-25 14:38:47,025 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ColumnDataCacheHandler:215 - adding cached data of size 448 for for [{datasetUUID:89fdc7ba-fc50-43d9-8cb8-a94203ac0074,queryMD5:50540d03f8183a215137b37fead8f41f,}] 2018-01-25 14:38:47,056 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 AsyncJasperPrintAccessor:260 - report finished 2018-01-25 14:38:47,056 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:907 - Ended fill for request 360302370_1516891115651_1 2018-01-25 14:38:47,056 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:907 - Ended fill for request 360302370_1516891115651_1 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BaseJdbcDataSource:59 - Connection successfully closed 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 BaseJdbcDataSource:59 - Connection successfully closed 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context null 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 ThreadMultiTenancyContextProvider:38 - Set context null 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RepositoryUtil:42 - set repository context to null 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 RepositoryUtil:42 - set repository context to null 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:564 - Ended execution 360302370_1516891115651_1 2018-01-25 14:38:47,060 DEBUG superuser 666D781F56F1EFF5304493318BF87F21 /organizations/organization_1/reports/AutoInventoryPro/CarsMissingTitles pool-6-thread-1 EngineServiceImpl:564 - Ended execution 360302370_1516891115651_1
×
×
  • Create New...