.runelite -> .openosrs
This commit is contained in:
2
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
@@ -29,4 +29,4 @@ If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here, e.g. logs. Your client logs can usually be found in
|
||||
`C:\Users\<your_user_name>\.runelite\logs` on Windows and `~/.runelite/logs` on Linux and macOS.
|
||||
`C:\Users\<your_user_name>\.openosrs\logs` on Windows and `~/.openosrs/logs` on Linux and macOS.
|
||||
|
||||
@@ -57,7 +57,7 @@ public class InfoPanel extends JPanel
|
||||
private static final BufferedImage TRANSPARENT_LOGO = ImageUtil.getResourceStreamFromClass(InfoPanel.class, "/openosrs.png");
|
||||
static final Dimension PANEL_SIZE = new Dimension(200, OpenOSRSSplashScreen.FRAME_SIZE.height);
|
||||
private static final Dimension VERSION_SIZE = new Dimension(PANEL_SIZE.width, 25);
|
||||
private static final File RUNELITE_DIR = new File(System.getProperty("user.home"), ".runelite");
|
||||
private static final File RUNELITE_DIR = new File(System.getProperty("user.home"), ".openosrs");
|
||||
private static final File LOGS_DIR = new File(RUNELITE_DIR, "logs");
|
||||
|
||||
public InfoPanel()
|
||||
|
||||
@@ -31,11 +31,11 @@
|
||||
</appender>
|
||||
|
||||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<file>${user.home}/.runelite/logs/client.log</file>
|
||||
<file>${user.home}/.openosrs/logs/client.log</file>
|
||||
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
<!-- daily rollover -->
|
||||
<fileNamePattern>${user.home}/.runelite/logs/client_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
|
||||
<fileNamePattern>${user.home}/.openosrs/logs/client_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
|
||||
|
||||
<!-- when file size is larger than defined, roll to new file -->
|
||||
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
|
||||
|
||||
Reference in New Issue
Block a user