Interface FileLogDestination
-
- All Superinterfaces:
LogDestination
public interface FileLogDestination extends LogDestination
This interface represents a file log destination.- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaxSize()
Returns the maximum size set for the file represented by this log destination.void
setMaxSize(int size)
Sets the maximum file size for this log destination.-
Methods inherited from interface com.microstrategy.web.objects.admin.serverconfig.LogDestination
getName, getType
-
-
-
-
Method Detail
-
getMaxSize
int getMaxSize()
Returns the maximum size set for the file represented by this log destination.- Returns:
- int the max size of the destination file.
-
setMaxSize
void setMaxSize(int size)
Sets the maximum file size for this log destination. Note that changes done to individual log destination object can be saved on the IServer usingLogDestinations.save()
method only. Thus, after one (or multiple) log destination/s (as this one) have been edited, the changes should be saved on IServer using theLogDestinations.save()
.- Parameters:
size
- the maximum file size.
-
-