diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-16 13:22:55 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-06-24 16:54:11 +0200 |
commit | 1afc82327aecbd372ddcd5bf8306bcb3722700ed (patch) | |
tree | 7004f37c8faabdc2204ed5e407e66d46d3b92287 /core/src/jquery | |
parent | 99cbf778f31a543889edcc709dbc9e8c9361e5f5 (diff) | |
download | nextcloud-server-1afc82327aecbd372ddcd5bf8306bcb3722700ed.tar.gz nextcloud-server-1afc82327aecbd372ddcd5bf8306bcb3722700ed.zip |
Move deprecation warnings to debug
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'core/src/jquery')
-rw-r--r-- | core/src/jquery/placeholder.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/jquery/placeholder.js b/core/src/jquery/placeholder.js index 03647059131..d91c94c18ac 100644 --- a/core/src/jquery/placeholder.js +++ b/core/src/jquery/placeholder.js @@ -140,7 +140,7 @@ const toRgb = (s) => { } String.prototype.toRgb = function() { - console.warn('String.prototype.toRgb is deprecated! It will be removed in Nextcloud 22.') + console.debug('String.prototype.toRgb is deprecated! It will be removed in Nextcloud 22.') return toRgb(this) } |