Hi,
In changeset #663605, you started using an empty user-agent in the prime function to fix a bug :
w3_http_get($url, array('user-agent' => ''));
But, instead of that, I think it would be fine to use a specific user-agent, like W3 Total Cache Preload + version for example, so that it would be easier to identify prime cache requests in the server log (for debugging purpose for example). Thus, this line of code could become something like that :
w3_http_get($url, array('user-agent' => 'W3 Total Cache Preload/' . W3TC_VERSION));
You could also define a constant in define.php for this user-agent.
What do you think about that ?
Thanks !