Ignore:
Timestamp:
Mar 4, 2013, 8:57:13 PM (12 years ago)
Author:
ldelgass
Message:

Remove XINETD define from nanovis. We only support server mode now, no glut
interaction loop with mouse/keyboard handlers. Fixes for trace logging to make
output closer to vtkvis: inlcude function name for trace messages, remove
newlines from format strings in macros since newlines get added by syslog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanovis/Vector4.h

    r3362 r3452  
    4545    void print() const
    4646    {
    47         TRACE("Vector4: (%.3f, %.3f, %.3f, %.3f)\n", x, y, z, w);
     47        TRACE("Vector4: (%.3f, %.3f, %.3f, %.3f)", x, y, z, w);
    4848    }
    4949
     
    140140        }
    141141        // No solution
    142         TRACE("No intersection between line and plane\n");
     142        TRACE("No intersection between line and plane");
    143143        return false;
    144144    }
Note: See TracChangeset for help on using the changeset viewer.