Julia 0.6 Output Issue?

Hi- I just installed 0.6 RC2, moving from the latest 5.2. I’m not sure if this is an issue and if so where it should be posted, but my console output has now slowed to a crawl with random line breaks inserted. For example, the following snippet takes full seconds to print, looking like a typewriter as it appears:

  print("\nFirst stage ",test, " results\n",
    "\nγ: ", db,
    "\nσ: ", dVar^.5,
    "\nχ2 Stat: ", size(mMom,2)>1 ? dchi2 : "NA",
    "\nχ2 p Val: ", size(mMom,2)>1 ? dchi2p : "NA",
    "\nα (E[mRe]-E[Re]): ",valpha,
    "\nα Var: ",valphaVar,
    "\nW (normalized by 1/mean(|S|)): ", mW,
    "\n")

prints as (obviously with the variables populated)

First stage Rm_SMB results

γ: 52
.77483562497896
σ: 
23.
193679985105984
χ2 Stat: 
0.7438618130608695

χ2 p Val: 0.
3884266030674083

α (E[mRe]-E[Re]): 
[
-0.
00025101
, 0.00
603787]
α Var: 
[8
.
47327
e
-8
 
-2
.03781e
-6; 
-
2
.03781
e-6 4.
90089e
-5]

W (normalized by 1/mean(|S|)): 
[
0.25549 
0.400581; 
0.400581
 4.3805
]

The output should be something like:

First stage Rm_SMB results
γ: 52.77483562497896
σ: 23.193679985105984
χ2 Stat: 0.7438618130608695
χ2 p Val: 0.3884266030674083
α (E[mRe]-E[Re]): [-0.00025101, 0.00603787]
α Var: [8.47327e-8 -2.03781e-6; -2.03781e-6 4.90089e-5]
W (normalized by 1/mean(|S|)): [0.25549 0.400581; 0.400581 4.3805]

Any help as to what is going on would be appreciated. Thanks!

Figured it out. Don’t use inspectdr() with the Plots package.