Skip to content

Commit 0fb3afd

Browse files
committed
docs: update links for 2027 branch
1 parent ad5f4e8 commit 0fb3afd

9 files changed

Lines changed: 17 additions & 17 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
DogLog is a logging library for FRC teams, created for use on [Team 581](https://github.com/team581).
66

7-
See [**the documentation site**](https://doglog.dev) for more information.
7+
See [**the documentation site**](https://2027.doglog.dev) for more information.
88

99
## Installation
1010

11-
**Please see the [installation guide](https://doglog.dev/getting-started/installation/) for more information.**
11+
**Please see the [installation guide](https://2027.doglog.dev/getting-started/installation/) for more information.**
1212

1313
### Installing via WPILib VS Code extension
1414

@@ -17,12 +17,12 @@ DogLog is available to install through the WPILib VS Code extension.
1717
### Vendordep URL
1818

1919
```text
20-
https://doglog.dev/vendordep.json
20+
https://2027.doglog.dev/vendordep.json
2121
```
2222

2323
## Usage
2424

25-
**Please see the [usage guide](https://doglog.dev/getting-started/usage/) for more information.**
25+
**Please see the [usage guide](https://2027.doglog.dev/getting-started/usage/) for more information.**
2626

2727
First, import the library from the dev.doglog namespace:
2828

lib/src/main/java/dev/doglog/DogLog.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static DogLogOptions getOptions() {
6161
*
6262
* <pre>DogLog.setOptions(new DogLogOptions().withNtPublish(true));</pre>
6363
*
64-
* <p>See https://doglog.dev/reference/logger-options/ for more information.
64+
* <p>See https://2027.doglog.dev/reference/logger-options/ for more information.
6565
*/
6666
public static void setOptions(@Nullable DogLogOptions newOptions) {
6767
if (newOptions == null) {
@@ -427,7 +427,7 @@ public static <T extends StructSerializable> void log(String key, @Nullable T va
427427
/**
428428
* Log a fault and create an {@link Alert} for it at the specified level.
429429
*
430-
* <p>See https://doglog.dev/guides/faults for more information.
430+
* <p>See https://2027.doglog.dev/guides/faults for more information.
431431
*
432432
* @param faultName The name of the fault to log.
433433
* @param alertType The type of alert to create for the fault, or <code>null</code> if it should
@@ -443,7 +443,7 @@ public static void logFault(@Nullable String faultName, @Nullable AlertType aler
443443
/**
444444
* Log a fault and create an error type {@link Alert} for it.
445445
*
446-
* <p>See https://doglog.dev/guides/faults for more information.
446+
* <p>See https://2027.doglog.dev/guides/faults for more information.
447447
*
448448
* @param faultName The name of the fault to log.
449449
* @see DogLog#decreaseFault(String)
@@ -456,7 +456,7 @@ public static void logFault(@Nullable String faultName) {
456456
* Log a fault and create an error type {@link Alert} for it. The enum will be converted to a
457457
* string with {@link Enum#name()}.
458458
*
459-
* <p>See https://doglog.dev/guides/faults for more information.
459+
* <p>See https://2027.doglog.dev/guides/faults for more information.
460460
*
461461
* @param faultName The name of the fault to log.
462462
* @see DogLog#decreaseFault(Enum)

lib/src/main/java/dev/doglog/DogLogOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Options for configuring DogLog.
88
*
9-
* <p>See https://doglog.dev/reference/logger-options/ for more information.
9+
* <p>See https://2027.doglog.dev/reference/logger-options/ for more information.
1010
*/
1111
public record DogLogOptions(
1212
/**
@@ -54,7 +54,7 @@ private static boolean isNotOnFms() {
5454
* competition environment, but you may want to tweak them to improve your development experience
5555
* at home.
5656
*
57-
* <p>See https://doglog.dev/getting-started/usage/#configuring For instructions on how to
57+
* <p>See https://2027.doglog.dev/getting-started/usage/#configuring For instructions on how to
5858
* customize these options.
5959
*/
6060
public DogLogOptions() {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* DogLog is a simple, unopinionated logging library for FRC.
33
*
4-
* <p>See https://doglog.dev for more information.
4+
* <p>See https://2027.doglog.dev for more information.
55
*/
66
@org.jspecify.annotations.NullMarked
77
package dev.doglog;

lib/wrangler.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"not_found_handling": "404-page",
66
},
77
"compatibility_date": "2025-07-17",
8-
"name": "doglog-javadoc",
8+
"name": "doglog-2027-javadoc",
99
"route": {
1010
"custom_domain": true,
11-
"pattern": "javadoc.doglog.dev",
11+
"pattern": "javadoc.2027.doglog.dev",
1212
},
1313
"workers_dev": false,
1414
"$schema": "../node_modules/wrangler/config-schema.json",

vendordep.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"fileName": "DogLog.json",
1010
"frcYear": "2025",
11-
"jsonUrl": "https://doglog.dev/vendordep.json",
11+
"jsonUrl": "https://2027.doglog.dev/vendordep.json",
1212
"name": "DogLog",
1313
"jniDependencies": [],
1414
"mavenUrls": [

web/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import path from 'path';
77

88
// https://astro.build/config
99
export default defineConfig({
10-
site: 'https://doglog.dev',
10+
site: 'https://2027.doglog.dev',
1111
trailingSlash: 'never',
1212
integrations: [
1313
{

web/src/content/docs/getting-started/installation.mdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ DogLog can be added using the WPILib VS Code extension, or by manually entering
3737

3838
![Screenshot of the "Install new libraries (online)" option in the WPILib command palette](../../../assets/getting-started/installation/install-new-libraries.png)
3939

40-
1. Paste the `https://doglog.dev/vendordep.json` URL into the dialog
40+
1. Paste the `https://2027.doglog.dev/vendordep.json` URL into the dialog
4141

4242
![Screenshot of the vendordep URL being pasted into the WPILib vendordeps dialog](../../../assets/getting-started/installation/vendordep-url.png)
4343

web/src/content/docs/index.mdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ Jump straight in and try DogLog for yourself.
5757
Add to your project now via the WPILib VS Code extension, or manually with the vendordep URL:
5858

5959
```text
60-
https://doglog.dev/vendordep.json
60+
https://2027.doglog.dev/vendordep.json
6161
```

0 commit comments

Comments
 (0)