You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/entrypoints.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -237,7 +237,7 @@ internal fun apolloCompilerRegistry(
237
237
pluginProviders.forEach {
238
238
// we make an exception for our own cache plugin because we want to display a nice error message to users before 4.3
239
239
if (it.javaClass.name !="com.apollographql.cache.apollocompilerplugin.ApolloCacheCompilerPluginProvider") {
240
-
println("Apollo: using ApolloCompilerPluginProvider is deprecated. Please use ApolloCompilerPlugin directly.")
240
+
println("Apollo: using ApolloCompilerPluginProvider is deprecated. You can use ApolloCompilerPlugin directly. See https://go.apollo.dev/ak-compiler-plugins for more details.")
241
241
}
242
242
hasPlugin =true
243
243
val plugin = it.create(environment)
@@ -246,7 +246,7 @@ internal fun apolloCompilerRegistry(
246
246
}
247
247
248
248
if (!hasPlugin && warnIfNotFound) {
249
-
println("Apollo: a compiler plugin was added with `Service.plugin()` but no plugin was loaded by the ServiceLoader. Check your META-INF/services/com.apollographql.apollo.compiler.ApolloCompilerPlugin file.")
249
+
println("Apollo: a compiler plugin was added with `Service.plugin()` but no plugin was loaded by the ServiceLoader. Check your META-INF/services/com.apollographql.apollo.compiler.ApolloCompilerPlugin file. See https://go.apollo.dev/ak-compiler-plugins for more details.")
0 commit comments