Would it be possible to have a crypt possibility to the filelog function and if yes how would the decrypt be handled?
Thanks in advance
Otto
Would it be possible to have a crypt possibility to the filelog function and if yes how would the decrypt be handled?
Thanks in advance
Otto
Hello Antonio,
thank you. But I would like to decrypt the text before writing to the disk but after filelog made of all the single array entries a string.
Do you think this is possible?
Thanks in advance
Otto
Otto,
Is it for error.log or for another log file ?
What function or code do you use to create the log file ?
Hello Antonio,
logfile( Setup():Daten + "protokoll\log" + dtos(date()) + ".txt",;
{ "SaveStandard", ::oZiRg:code,::oZiRg:USER_TIME,::LEdit,::oZiRg:artnum, ::oZiRg:bezeichnun, ::oZiRg:Menge, ::oZiRg:preis } )
I would like to use it for program intern protocols.
The different elements could be of different values.
These protocols should only be readable for service techniques in case the is a problem.
Best regards,
Otto
Otto,
Have you tried with :
{ Encrypt( "SaveStandard" ), Encrypt( ::oZiRg:code ), Encrypt( ::oZiRg:USER_TIME ), Encrypt( ::LEdit ), Encrypt( ::oZiRg:artnum ), ...
each value must be of character type. If not then use Encrypt( cValToChar( ... ) )