Warn Spam in Console

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out our Wiki for downloads and any other information about Skript!

Status
Not open for further replies.

Cupex

Member
Feb 16, 2020
43
1
8
26
Every 10 Seconds this Warn / Error spams in my Server Console
Code:
[Skript] Cannot write variables to the database 'default' at sufficient speed; server performance may suffer and many variables will be lost if the server crashes. (this warning will be repeated at most once every 10 seconds)
I don't know what it means or how I disable this. It is annoying for me when I am in the console to see my player's or player's history.
Does anyone know, what it means or how to disable it ?
 
what it means is that you are creating a large number of variables that skript is trying to save to the default log.
you might be able to fix a lot of your code by using underscores at the start of your variables.

if a variable is not used outside the piecr of code it is in, make it {_name} to chang eit into a local variable that skript wont have to save to a file. or use a seperate file for the large lists you might wanna write.

are you running any skripts specifically writing a lot of variables? like trying to log block changes, or adding all blocks in a chunk to a list variable etc?
 
Status
Not open for further replies.