Archived

This forum has been archived. Please start a new discussion on GitHub.

Something missing in Ice 3.1.0 manual

It seems that Ice 3.1.0 manual (C.2 Ice Trace Properties, page 1626) missing the following two items:
1.Ice.Trace.Location
2.Ice.Trace.Security

Comments

  • benoit
    benoit Rennes, France
    Thanks, it's indeed missing the Ice.Trace.Location property, we'll fix this!

    However, Ice.Trace.Security doesn't exist, are you perhaps looking for IceSSL.Trace.Security? This one is documented in the "IceSSL properties" section.

    Cheers,
    Benoit.
  • I have found the following code in TraceLevel.java of IceJ 3.1.0:
    public final class TraceLevels
    {
        TraceLevels(Ice.Properties properties)
        {
        	//...
            securityCat = "Security";
    	//...
            final String keyBase = "Ice.Trace.";
    	//...
            security = properties.getPropertyAsInt(keyBase + securityCat);
            //...
        }
        //...
    }
    

    But it seems that TraceLevels.security has not been used!
  • benoit
    benoit Rennes, France
    I don't believe these security attributes in the TraceLevels class are used, we'll remove them. Thanks for bringing this to our attention!

    Cheers,
    Benoit.