Tranfer() function not see by CDR asterisk

hello all

I want use CDR of ASTERISK but I have a problem

with this configuration its ok

in my extensions.conf :

exten => 101,1,Dial(SIP/101@phone101.local)
exten => 102,1,Dial(SIP/102@phone102.local)

Master csv:

“”,“102”,“101”,“default”,""“102"” <102>",“SIP/102-00000007”,“SIP/101-00000008”,“Dial”,“SIP/101”,“2014-08-13 14:41:47”,“2014-08-13 14:41:50”,3,0,“NO ANSWER”,“DOCUMENTATION”,“1407940907.7”,""

but with this configuration its not OK !!!

exten => 101,1,Transfer(SIP/101@phone101.local)
exten => 102,1,Transfer(SIP/102@phone102.local)

Master csv:
blank !!!

how you see in Master.csv if you use Tranfer() function by asterisk for use redirection move 302

CDRs are only intended for the simplest calls.

Normally one would say use channel event logging, but Transfer is so poorly supported that I’m not sure that even that is supported.

You could try forcing a CDR out with ResetCDR after the Transfer returns, or in h extension processing, however, that might only work when the call is answered. Answering the call radically changes the way that Transfer is done, making it a lot more fragile.

Maybe it is best to force out a CDR immediately before the Transfer.