Page 1 of 1
logmode
Posted: Thu Aug 10, 2017 6:47 am
by tvonbrasch
Hi
I am having trouble with the logmode command
when I use the command
i can see some information in the log window when the program is running, but the log window becomes empty when the program finishes. why is this?
Thomas
Eviews 10 Jul 27
Re: logmode
Posted: Thu Aug 10, 2017 7:18 am
by EViews Steve
I'm using EViews 10 Aug 7 2017 build and I can't seem to recreate the error. Here's my test program:
Code: Select all
logmode(autosave=on, float) all
create u 10
series x = rnd
Does this cause a problem on your build? If so, try updating to the latest patch.
Re: logmode
Posted: Thu Aug 10, 2017 7:39 am
by EViews Jason
Can you post more of your program or send it to
support@eviews.com?
We are not seeing the reported behavior.
Re: logmode
Posted: Thu Aug 10, 2017 9:49 am
by tvonbrasch
Eviews 10 Aug 7, that is not official yet, is it?
The version I have is Eviews 10 July 27.
I think the problem is caused by the rgets addin made by Gareth....?
Try the code
Code: Select all
close @all
%dir=@runpath
cd %dir
logmode(autosave=on, float) all
wfopen .\macrobond
pageselect m
smpl 2002 @last
rgets(eq=eq_kpi,arlags=1 2 3 4 5 6 7 8 9 10 11 12) dlog(kpi) c
It is as if the rgets command deletes the log-file.
Thomas
Re: logmode
Posted: Thu Aug 10, 2017 9:58 am
by EViews Steve
Found the problem.
RGETS internally tries to adjust the logmode. That seems to clear the current log window. I'll look into it and let you know when we have a fix.
Re: logmode
Posted: Thu Aug 10, 2017 10:09 am
by tvonbrasch
Excellent, thanks!
Thomas